thrnciar / tests / python

Forked from tests/python 4 years ago
Clone
Blob Blame History Raw
#!/bin/sh -eux

# set python version
VERSION=${VERSION:-3.7}
PYTHON=${PYTHON:-python$VERSION}

# what to skip
# test_socket swaps and kills the machine https://bugs.python.org/issue34587
X=${X:-"-x test_socket"}

# parallel jobs, 0 lets Python decide what's best
JOBS=${JOBS:-0}

$PYTHON -m test -j$JOBS $X