@@ -55,22 +55,22 @@ test-unit:
55
55
test-crate :
56
56
$(LOG_LEVEL_VAR ) cargo test -p $(crate ) --no-fail-fast -- --skip integration_tests --skip runtime_tests --nocapture
57
57
58
- # Run the runtime tests without the tests that use some sort of assumed external depedency (e.g., Docker, a language toolchain, etc.)
58
+ # Run the runtime tests without the tests that use some sort of assumed external dependency (e.g., Docker, a language toolchain, etc.)
59
59
.PHONY : test-runtime
60
60
test-runtime :
61
61
cargo test --release runtime_tests --no-default-features --no-fail-fast -- --nocapture
62
62
63
- # Run all of the runtime tests including those that use some sort of assumed external depedency (e.g., Docker, a language toolchain, etc.)
63
+ # Run all of the runtime tests including those that use some sort of assumed external dependency (e.g., Docker, a language toolchain, etc.)
64
64
.PHONY : test-runtime-full
65
65
test-runtime-full :
66
66
cargo test --release runtime_tests --no-default-features --features extern-dependencies-tests --no-fail-fast -- --nocapture
67
67
68
- # Run the integration tests without the tests that use some sort of assumed external depedency (e.g., Docker, a language toolchain, etc.)
68
+ # Run the integration tests without the tests that use some sort of assumed external dependency (e.g., Docker, a language toolchain, etc.)
69
69
.PHONY : test-integration
70
70
test-integration : test-runtime
71
71
cargo test --release integration_tests --no-default-features --no-fail-fast -- --nocapture
72
72
73
- # Run all of the integration tests including those that use some sort of assumed external depedency (e.g., Docker, a language toolchain, etc.)
73
+ # Run all of the integration tests including those that use some sort of assumed external dependency (e.g., Docker, a language toolchain, etc.)
74
74
.PHONY : test-integration-full
75
75
test-integration-full : test-runtime-full
76
76
cargo test --release integration_tests --no-default-features --features extern-dependencies-tests --no-fail-fast -- --nocapture
0 commit comments