Przeglądaj źródła

fix: pure test does not need to build workspace

thesimplekid 1 miesiąc temu
rodzic
commit
20d2e8d479
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2 2
      justfile

+ 2 - 2
justfile

@@ -66,14 +66,14 @@ test:
 
   
 # run doc tests
-test-pure db="memory": build
+test-pure db="memory":
   #!/usr/bin/env bash
   set -euo pipefail
   if [ ! -f Cargo.toml ]; then
     cd {{invocation_directory()}}
   fi
 
-  # Run pure integration tests
+  # Run pure integration tests (cargo test will only build what's needed for the test)
   CDK_TEST_DB_TYPE={{db}} cargo test -p cdk-integration-tests --test integration_tests_pure -- --test-threads 1
 
 test-all db="memory":