about summary refs log tree commit diff
path: root/tvix/eval/Cargo.toml
diff options
context:
space:
mode:
authorsterni <sternenseemann@systemli.org>2022-10-19T18·30+0200
committerclbot <clbot@tvl.fyi>2022-10-20T02·28+0000
commite3637136d134dd8cd5c38af76fe69fa5cb11a297 (patch)
tree1b4688855efeae6854c2befc153ffddeb6eb8a31 /tvix/eval/Cargo.toml
parent292a751388b0a6e1695afb56d28c2109f1c0707e (diff)
test(tvix/eval): enable nix_tests by default r/5163
Since cl/7036 we have a mechanism for dealing with the nix_tests we do
not pass yet.

Change-Id: I246c52963ae7f2500253f4035a77d7006dd35307
Reviewed-on: https://cl.tvl.fyi/c/depot/+/7049
Autosubmit: sterni <sternenseemann@systemli.org>
Tested-by: BuildkiteCI
Reviewed-by: tazjin <tazjin@tvl.su>
Diffstat (limited to 'tvix/eval/Cargo.toml')
-rw-r--r--tvix/eval/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/eval/Cargo.toml b/tvix/eval/Cargo.toml
index 88473c692e..1667aa46eb 100644
--- a/tvix/eval/Cargo.toml
+++ b/tvix/eval/Cargo.toml
@@ -42,7 +42,7 @@ itertools = "0.10.3"
 tempdir = "0.3.7"
 
 [features]
-default = [ "repl", "impure", "arbitrary" ]
+default = [ "repl", "impure", "arbitrary", "nix_tests" ]
 
 # Enables running the Nix language test suite from the original C++
 # Nix implementation (at version 2.3) against Tvix.