https://github.com/galaxyproject/galaxy
Revision 313dd079eccecd48248c19e2aa265b17ecc1f025 authored by John Chilton on 20 December 2015, 18:06:24 UTC, committed by John Chilton on 20 December 2015, 18:07:02 UTC
1 parent a044844
Raw File
Tip revision: 313dd079eccecd48248c19e2aa265b17ecc1f025 authored by John Chilton on 20 December 2015, 18:06:24 UTC
Attempt to fix dependency and version issues with that first release.
Tip revision: 313dd07
tox.ini
# TODO: py34 to envlist
# TODO: implement doc linting
[tox]
envlist = py34-lint, py27-lint, py27-lint-readme, py26, py27
source_dir = galaxy
test_dir = tests

[testenv]
commands = {envpython} setup.py nosetests []
deps =
    unittest2
    nose
    coverage
    flask

[testenv:py27-lint]
commands = flake8 {[tox]source_dir} {[tox]source_dir}
skip_install = True
deps = flake8

[testenv:py34-lint]
commands = flake8 {[tox]source_dir} {[tox]source_dir}
skip_install = True
deps = flake8

[testenv:py27-lint-readme]
commands = make lint-readme
skip_install = True
whitelist_externals = make
deps =
    readme
back to top