From fc91ee7a01afdf2c9095789625ced7664ccf752d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Wed, 29 Dec 2021 20:44:09 +0100 Subject: [PATCH] Just: Allow running selected e2e tests --- Justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Justfile b/Justfile index 8f3dc66..c87684f 100644 --- a/Justfile +++ b/Justfile @@ -30,10 +30,10 @@ e2e-venv: && pip --disable-pip-version-check install -r ./requirements.txt >/dev/null -test-e2e: e2e-venv release +test-e2e +tests=".": e2e-venv release cd ./e2e_tests \ && . ./venv/bin/activate \ - && TMPDIR=/dev/shm python -m pytest --color=yes . + && TMPDIR=/dev/shm python -m pytest --color=yes {{tests}} update-dependencies: @cd ./depcheck \