f41b51385b
Since we use endpoints, those are needed for running tests. Provide wrapper script. QubesOS/qubes-issues#853
11 lines
247 B
Bash
Executable File
11 lines
247 B
Bash
Executable File
#!/bin/sh
|
|
|
|
: "${PYTHON:=python}"
|
|
: "${TESTPYTHONPATH:=test-packages}"
|
|
|
|
PYTHONPATH="${TESTPYTHONPATH}:${PYTHONPATH}"
|
|
export PYTHONPATH
|
|
|
|
"${PYTHON}" setup.py egg_info --egg-base "${TESTPYTHONPATH}"
|
|
"${PYTHON}" -m unittest discover -p '*.py' -v "$@"
|