1
0
mirror of https://github.com/gryf/fs-uae-wrapper.git synced 2026-02-12 03:35:51 +01:00

Added tox, setup.py, executable, test-req

This commit is contained in:
2016-12-19 20:22:22 +01:00
parent e3cfd02686
commit 68049a6eb8
4 changed files with 72 additions and 0 deletions

20
tox.ini Normal file
View File

@@ -0,0 +1,20 @@
[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:py34-flake8]
basepython = python3.4
deps = flake8
commands = flake8 {posargs}
[testenv:py27-flake8]
basepython = python2.7
deps = flake8
commands = flake8 {posargs}