From 125b750b5fe388a22768d0e7365dc6779fe98486 Mon Sep 17 00:00:00 2001 From: Ryan Levick Date: Thu, 21 Dec 2023 12:43:22 +0100 Subject: [PATCH] Run runtime tests in integration tests and not e2e tests Signed-off-by: Ryan Levick --- Makefile | 1 + e2e-tests.Dockerfile | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 24bf2aa2a..31eec5c44 100644 --- a/Makefile +++ b/Makefile @@ -95,6 +95,7 @@ test-crate: .PHONY: test-integration test-integration: + 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 533489877..3825d45d8 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