mirror of
https://github.com/gryf/fs-uae-wrapper.git
synced 2026-01-09 23:34:19 +01:00
Currently, as a python3 interpreter, specific version has been chosen. As fs-uae-wrapper doesn't use any special features from latest version of the python3, it doesn't make sense to have fixed version of it. Just let operating system pick right python 3 interpreter.
26 lines
463 B
INI
26 lines
463 B
INI
[tox]
|
|
envlist = py27,py3,py27-flake8,py3-flake8
|
|
|
|
usedevelop = True
|
|
|
|
[testenv]
|
|
usedevelop=True
|
|
setenv = COVERAGE_FILE = .coverage
|
|
commands = py.test --cov=fs_uae_wrapper --cov-report=term-missing
|
|
|
|
deps = -r{toxinidir}/test-requirements.txt
|
|
|
|
[testenv:py27]
|
|
deps = {[testenv]deps}
|
|
mock
|
|
|
|
[testenv:py3-flake8]
|
|
basepython = python3
|
|
deps = flake8
|
|
commands = flake8 {posargs}
|
|
|
|
[testenv:py27-flake8]
|
|
basepython = python2.7
|
|
deps = flake8
|
|
commands = flake8 {posargs}
|