File: tox.ini

package info (click to toggle)
python-ddt 1.0.1-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 184 kB
  • sloc: python: 368; makefile: 153; sh: 5
file content (22 lines) | stat: -rw-r--r-- 430 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[tox]
envlist = py27, py33, py34

[testenv]
deps = 
    nose
    coverage
    flake8
    six>=1.4.0
commands = 
    nosetests -s --with-coverage --cover-package=ddt --cover-html
    flake8 ddt.py test

[testenv:py27]
deps =
    {[testenv]deps}
    Sphinx
    sphinxcontrib-programoutput
commands = 
    nosetests -s --with-coverage --cover-package=ddt --cover-html
    flake8 ddt.py test
    sphinx-build -b html docs docs/_build