From afd67d87a6349c4b97453a12274c6ccf5e976339 Mon Sep 17 00:00:00 2001 From: Matthias Bisping Date: Tue, 26 Apr 2022 12:48:12 +0200 Subject: [PATCH] updated test container dockerfile for new location of tests directory --- Dockerfile_tests | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile_tests b/Dockerfile_tests index b16eccc..fd1164f 100755 --- a/Dockerfile_tests +++ b/Dockerfile_tests @@ -16,4 +16,4 @@ COPY . . RUN python3 -m pip install -e . RUN python3 -m pip install -r requirements.txt -CMD coverage run -m pytest pyinfra/test/ -x && coverage report -m && coverage xml +CMD coverage run -m pytest test/ -x && coverage report -m && coverage xml