summaryrefslogtreecommitdiff
path: root/podman
diff options
context:
space:
mode:
Diffstat (limited to 'podman')
-rwxr-xr-xpodman/testdata/testscript.sh8
1 files changed, 6 insertions, 2 deletions
diff --git a/podman/testdata/testscript.sh b/podman/testdata/testscript.sh
index a5b1b2f..4e191b9 100755
--- a/podman/testdata/testscript.sh
+++ b/podman/testdata/testscript.sh
@@ -3,6 +3,10 @@
set -e
git clone /data/git git
cd git
-#python3 -m pytest --workers auto
-python3 -m pytest -x
+
+if [ $# -ge 1 -a "$1" = "--parallel" ]; then
+ python3 -m pytest --workers auto
+else
+ python3 -m pytest -x
+fi