35 lines
554 B
INI
35 lines
554 B
INI
[tox]
|
|
envlist = py310
|
|
|
|
[testenv]
|
|
deps =
|
|
pytest
|
|
pytest-qt
|
|
PyQt5>=5.15.9
|
|
PySide6>=6.8.1
|
|
Panda3D>=1.10.15
|
|
commands =
|
|
pytest demo/quick_script_test.py
|
|
|
|
[testenv:lint]
|
|
deps =
|
|
flake8
|
|
commands =
|
|
flake8 core/ demo/ scripts/
|
|
|
|
[testenv:coverage]
|
|
deps =
|
|
pytest
|
|
pytest-cov
|
|
PyQt5>=5.15.9
|
|
PySide6>=6.8.1
|
|
Panda3D>=1.10.15
|
|
commands =
|
|
pytest --cov=core --cov=demo --cov=scripts
|
|
|
|
[testenv:memory]
|
|
deps =
|
|
memory-profiler
|
|
Panda3D>=1.10.15
|
|
commands =
|
|
python -m memory_profiler memory_test_example.py |