1
0
mirror of https://github.com/gryf/fs-uae-wrapper.git synced 2026-01-09 23:34:19 +01:00
Files
fs-uae-wrapper/tox.ini
gryf 1559591417 Changed python3 interpreter to default.
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.
2019-10-06 18:09:32 +02:00

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}