11 lines
248 B
Bash
Executable file
11 lines
248 B
Bash
Executable file
#!/bin/sh -eux
|
|
|
|
# set python version
|
|
VERSION=${VERSION:-3.7}
|
|
PYTHON=${PYTHON:-python${VERSION}dm}
|
|
|
|
# what to skip
|
|
# test_socket swaps and kills the machine https://bugs.python.org/issue34587
|
|
X=${X:-"-x test_socket"}
|
|
|
|
$PYTHON -m test --findleaks $X
|