summaryrefslogtreecommitdiff
path: root/podman/testdata/testscript.sh
blob: 4e191b97af617585db620aad9c7d24c7ab20266a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

set -e 
git clone /data/git git
cd git

if [ $# -ge 1 -a "$1" = "--parallel" ]; then
    python3 -m pytest --workers auto
else
    python3 -m pytest -x
fi