diff options
author | Vincent Ambo <mail@tazj.in> | 2022-08-10T15·52+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2022-08-24T21·23+0000 |
commit | b28da8ad56bd0d5dbf58926241060a6e4d34908b (patch) | |
tree | 55df4dd19d06bb23f671348ed074a9631a6dee39 /tvix/eval/Cargo.toml | |
parent | 4c9aad17add413a387bf927438de8831c00065c5 (diff) |
chore(tvix/eval): add 'test-generator' as dev-dependency r/4460
This crate makes it easy to generate test cases from files on disk, which is used for running the Nix test suite against Tvix. Change-Id: I60ef26484d05e723982679dd42958adf52735916 Reviewed-on: https://cl.tvl.fyi/c/depot/+/6125 Tested-by: BuildkiteCI Reviewed-by: grfn <grfn@gws.fyi>
Diffstat (limited to 'tvix/eval/Cargo.toml')
-rw-r--r-- | tvix/eval/Cargo.toml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tvix/eval/Cargo.toml b/tvix/eval/Cargo.toml index 0fa90d04d007..2e5643db7991 100644 --- a/tvix/eval/Cargo.toml +++ b/tvix/eval/Cargo.toml @@ -7,3 +7,6 @@ edition = "2021" [dependencies] rnix = "0.10.2" + +[dev-dependencies] +test-generator = "0.3.0" |