mirror of
https://github.com/gryf/fs-uae-wrapper.git
synced 2025-12-24 23:22:27 +01:00
Changed logic for checking if run_command argument is a list. Fixed tests and refactoring save_save() method in cd32 module.
26 lines
468 B
INI
26 lines
468 B
INI
[tox]
|
|
envlist = py27,py34,py27-flake8,py34-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:py34-flake8]
|
|
basepython = python3.4
|
|
deps = flake8
|
|
commands = flake8 {posargs}
|
|
|
|
[testenv:py27-flake8]
|
|
basepython = python2.7
|
|
deps = flake8
|
|
commands = flake8 {posargs}
|