mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-05 14:59:44 +00:00
19 lines
449 B
INI
19 lines
449 B
INI
[tox]
|
|
envlist =
|
|
py35,
|
|
py36,
|
|
py37,
|
|
|
|
[testenv]
|
|
deps =
|
|
-rrequirements-dev.txt
|
|
commands =
|
|
# Generate local files
|
|
python setup.py build
|
|
# Working in the local directory, try to compile all bytecode
|
|
python -m compileall trezorlib/
|
|
# From installed version, smoke-test trezorctl
|
|
trezorctl --help
|
|
# Run non-device-dependent tests from installed version
|
|
python -E -m pytest --pyargs trezorlib.tests.unit_tests
|