Revision 7c443eda567ece12fb90330e131e7f97c7b63ba2 authored by Nate Coraor on 15 December 2016, 17:38:28 UTC, committed by Nate Coraor on 15 December 2016, 17:38:28 UTC
2 parent s c8e9845 + da7afb4
Raw File
tox.ini
[tox]
envlist = py27-lint, py26-lint, py27-unit, py26-unit, qunit
skipsdist = True

[testenv:py27-lint]
commands = bash .ci/flake8_wrapper.sh
whitelist_externals = bash
deps = flake8

[testenv:py26-lint]
commands = bash .ci/flake8_wrapper.sh
whitelist_externals = bash
deps = flake8

[testenv:py27-unit]
commands = bash run_tests.sh -u
whitelist_externals = bash

[testenv:py26-unit]
commands = bash run_tests.sh -u
whitelist_externals = bash
deps = unittest2

[testenv:qunit]
commands = bash run_tests.sh -q
whitelist_externals = bash
back to top