diff --git a/Makefile b/Makefile index 7dfacad8d3..1128bc6ad7 100644 --- a/Makefile +++ b/Makefile @@ -95,6 +95,7 @@ test-crate: .PHONY: test-integration test-integration: test-kv test-sqlite + cargo test -F e2e-tests -- runtime_tests --nocapture; \ $(LOG_LEVEL_VAR) cargo test --test integration --no-fail-fast -- --skip spinup_tests --skip cloud_tests --nocapture .PHONY: test-spin-up diff --git a/e2e-tests.Dockerfile b/e2e-tests.Dockerfile index 533489877f..3825d45d8c 100644 --- a/e2e-tests.Dockerfile +++ b/e2e-tests.Dockerfile @@ -76,8 +76,6 @@ RUN printf '#!/bin/bash cargo build --release \n \ fi \n\n \ cargo test spinup_tests --features e2e-tests --no-fail-fast -- --nocapture \n \ - # Run the runtime tests which will supersede many e2e tests in the future \n \ - cargo test -F e2e-tests -- runtime_tests --nocapture \n \ ' > /usr/local/bin/entrypoint.sh RUN chmod +x /usr/local/bin/entrypoint.sh