Ver Fonte

fix(itest): enable powertest tests in the CI

ariasuni há 1 semana atrás
pai
commit
6e29fb340f
1 ficheiros alterados com 8 adições e 1 exclusões
  1. 8 1
      nix/trycmd.nix

+ 8 - 1
nix/trycmd.nix

@@ -21,7 +21,14 @@
       bash devtools/dir-generator.sh tests/test_dir && echo "Dir generated"
       bash devtools/generate-timestamp-test-dir.sh tests/timestamp_test_dir
     '';
-    cargoTestOptions = opts: opts ++ [ "--features nix" ];
+    cargoTestOptions =
+      opts:
+      opts
+      ++ [
+        "--features nix"
+        "--features nix-local"
+        "--features powertest"
+      ];
     inherit buildInputs;
     nativeBuildInputs = with pkgs; [ git ];
   };