tox.ini: Add gui unit tests target

Fix main unit tests to use envpython explicitly.

Signed-off-by: Chris PeBenito <pebenito@ieee.org>
This commit is contained in:
Chris PeBenito 2023-06-20 15:50:53 -04:00 committed by Chris PeBenito
parent 769d773ef0
commit 3c2254c335

27
tox.ini
View File

@ -9,7 +9,7 @@ max-line-length = 100
deps = {[testenv]deps}
pycodestyle
commands_pre = pycodestyle --version
commands = pycodestyle setools/ setoolsgui/ tests/ seinfo seinfoflow sedta sesearch sediff sechecker apol --statistics
commands = pycodestyle setools/ setoolsgui/ tests/ tests-gui/ seinfo seinfoflow sedta sesearch sediff sechecker apol --statistics
[testenv:coverage]
setenv = SETOOLS_COVERAGE = 1
@ -26,9 +26,10 @@ commands = coverage run -m pytest tests
deps = {[testenv]deps}
pylint>=2.8.0
PyQt5>=5.15.0
pytest-qt
commands_pre = pylint --version
{envpython} setup.py build_ext -i
commands = pylint -E setools setoolsgui tests seinfo seinfoflow sedta sesearch sediff sechecker apol
commands = pylint -E setools setoolsgui tests tests-gui seinfo seinfoflow sedta sesearch sediff sechecker apol
[testenv:mypy]
deps = {[testenv]deps}
@ -36,20 +37,22 @@ deps = {[testenv]deps}
PyQt5>=5.15.0
mypy
commands_pre = mypy --version
commands = mypy -p setools
mypy -p setoolsgui
mypy seinfo
mypy seinfoflow
mypy sedta
mypy sesearch
mypy sediff
mypy sechecker
mypy apol
commands = mypy -p setools -p setoolsgui -p tests -p tests-gui
mypy --scripts-are-modules seinfo seinfoflow sedta sesearch sediff sechecker apol
[testenv:install]
deps = {[testenv]deps}
commands = {envpython} -m pip install --use-pep517 .
[testenv:gui]
passenv = DISPLAY
XAUTHORITY
deps = {[testenv]deps}
PyQt5>=5.15.0
pytest-qt
pytest-xvfb
commands = {envpython} -m pytest tests-gui
[testenv]
passenv = USERSPACE_SRC
deps = networkx>=2.0
@ -60,4 +63,4 @@ deps = networkx>=2.0
python3.10: networkx>=2.6
python3.11: networkx>=2.6
commands_pre = {envpython} setup.py build_ext -i
commands = pytest tests
commands = {envpython} -m pytest tests