mirror of
https://github.com/openai/codex.git
synced 2026-04-26 23:55:25 +00:00
This PR adds the macro `#[large_stack_test]` This spawns the tests in a dedicated tokio runtime with a larger stack. It is useful for tests that needs the full recursion on the harness (which is now too deep for windows for example)
8 lines
148 B
Python
8 lines
148 B
Python
load("//:defs.bzl", "codex_rust_crate")
|
|
|
|
codex_rust_crate(
|
|
name = "test-macros",
|
|
crate_name = "codex_test_macros",
|
|
proc_macro = True,
|
|
)
|