~coreygoldberg/uci-engine/subunit-results

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[tox]
envlist = py34, flake8

[testenv]
deps =
    ucitests
    coverage
commands =
    {envpython} setup.py develop
    {envpython} -m unittest discover -s subunitresults -v
    # coverage erase
    # coverage run --omit=.tox/* -m unittest discover -s subunitresults
    # coverage html
    # coverage report -m
    # coverage html

[testenv:flake8]
deps =
    flake8
commands =
    flake8 subunitresults