1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-18 05:28:40 +00:00
trezor-firmware/python/tox.ini
Pavol Rusnak b9bbd5fcd7 chore: update dependencies
[no changelog]

Co-Authored-By: Martin Milata <martin@martinmilata.cz>
2022-02-15 13:28:03 +01:00

25 lines
474 B
INI

[tox]
envlist =
py36,
py37,
py38,
py39,
py310
[testenv]
deps =
-rrequirements.txt
-rrequirements-optional.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