5 lines
169 B
Bash
Executable file
5 lines
169 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -x
|
|
set -o errexit -o nounset
|
|
MAKEDIR="$(dirname "$0")"
|
|
python3 -m pytest -c "${MAKEDIR}/rplint_pytest.ini" ${TESTS:+"--scenarios=${TESTS}"} "$@"
|