From 913f94be6ef3369b3ab1b4e21ec13aff2e272015 Mon Sep 17 00:00:00 2001 From: michaelfeil Date: Sun, 7 Jan 2024 13:52:54 +0000 Subject: [PATCH] update end-to-end test --- libs/infinity_emb/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/infinity_emb/Dockerfile b/libs/infinity_emb/Dockerfile index a0e7efcb..5485abed 100644 --- a/libs/infinity_emb/Dockerfile +++ b/libs/infinity_emb/Dockerfile @@ -54,7 +54,8 @@ RUN poetry run black --check . RUN poetry run mypy . # pytest COPY tests tests -RUN poetry run python -m pytest -x +# run end to end tests because of duration of build in github ci. +RUN poetry run python -m pytest tests/end_to_end -x # write a file RUN echo "all tests passed" > "test_results.txt"