https://github.com/galaxyproject/galaxy
Raw File
Tip revision: bf7cc59f3fc832761b7be57a188cf5ca8f771cf2 authored by John Chilton on 03 January 2016, 15:50:01 UTC
Version 16.1.7
Tip revision: bf7cc59
tox.ini
# TODO: implement doc linting
[tox]
envlist = py34-lint, py27-lint, py27-lint-readme, py26, py27, py34
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