mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-05 14:59:44 +00:00
23 lines
432 B
INI
23 lines
432 B
INI
[tox]
|
|
envlist =
|
|
py35,
|
|
py36,
|
|
py37,
|
|
py38,
|
|
|
|
[testenv]
|
|
deps =
|
|
-rrequirements.txt
|
|
pytest>=3.6
|
|
pytest-random-order
|
|
importlib-metadata!=0.21
|
|
commands =
|
|
# Generate local files
|
|
python setup.py build
|
|
# Working in the local directory, try to compile all bytecode
|
|
python -m compileall src tests
|
|
# Smoke-test trezorctl
|
|
trezorctl --help
|
|
# Run test suite
|
|
pytest --random-order tests
|