swh:1:snp:68efb3baf28256c952b30ae9ecf5cb4fac86eafb
Raw File
Tip revision: 2feea1c1189fe7765252803fa875f48541f422f2 authored by John Chilton on 06 May 2016, 17:38:29 UTC
Version 16.7.2
Tip revision: 2feea1c
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