mirror of
https://github.com/gryf/fs-uae-wrapper.git
synced 2025-12-18 12:00:28 +01:00
22 lines
337 B
INI
22 lines
337 B
INI
[tox]
|
|
envlist = py3,py3-flake8
|
|
|
|
usedevelop = True
|
|
|
|
[testenv]
|
|
usedevelop=True
|
|
setenv = COVERAGE_FILE = .coverage
|
|
commands = py.test --cov=fs_uae_wrapper --cov-report=term-missing
|
|
|
|
deps =
|
|
pytest
|
|
pytest-cov
|
|
pytest-pep8
|
|
coverage
|
|
flake8
|
|
|
|
[testenv:py3-flake8]
|
|
basepython = python3
|
|
deps = flake8
|
|
commands = flake8 {posargs}
|