diff options
author | Ilan Joselevich <personal@ilanjoselevich.com> | 2024-06-05T15·56+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-06-05T17·52+0000 |
commit | 34d93f1d9611ca110d71ebf7430df646247270dc (patch) | |
tree | 9d23c9878b1aa8a5579ecf9492661ec96d04cea1 /tvix/eval | |
parent | 72b9a126b81d9d41557c233387708c2bb640d13b (diff) |
fix(tvix): make rstest pick up new test case files r/8218
Context: https://github.com/la10736/rstest/issues/256 Cargo will now cause a rebuild whenever a new test case file is added. Previsouly running `cargo test` after adding a new test case resulted in that case not being picked up and ignored. Change-Id: Ibfc420b5bfe3f3ee41d3ebd3fb9d248819fa6ed9 Reviewed-on: https://cl.tvl.fyi/c/depot/+/11751 Reviewed-by: flokli <flokli@flokli.de> Tested-by: BuildkiteCI Autosubmit: Ilan Joselevich <personal@ilanjoselevich.com>
Diffstat (limited to 'tvix/eval')
-rw-r--r-- | tvix/eval/build.rs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tvix/eval/build.rs b/tvix/eval/build.rs index a9c9a78b060d..b37a6e8a0c8d 100644 --- a/tvix/eval/build.rs +++ b/tvix/eval/build.rs @@ -5,5 +5,10 @@ fn main() { "cargo:rustc-env=TVIX_CURRENT_SYSTEM={}", &env::var("TARGET").unwrap() ); - println!("cargo:rerun-if-changed-env=TARGET") + println!("cargo:rerun-if-changed-env=TARGET"); + + // Pick up new test case files + // https://github.com/la10736/rstest/issues/256 + println!("cargo:rerun-if-changed=src/tests/nix_tests"); + println!("cargo:rerun-if-changed=src/tests/tvix_tests") } |