File: tox.ini

package info (click to toggle)
python-bleach 2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 460 kB
  • ctags: 216
  • sloc: python: 1,745; makefile: 130
file content (21 lines) | stat: -rw-r--r-- 607 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
# Tox (http://tox.testrun.org/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.

[tox]
envlist = py{27,33,34,35,36}-html5lib{99999999,999999999},pypy-html5lib99999999

[testenv]
basepython =
    py27: python2.7
    py33: python3.3
    py34: python3.4
    py35: python3.5
    py36: python3.6
deps =
    -rrequirements.txt
    html5lib99999999: html5lib==0.99999999
    html5lib999999999: html5lib==0.999999999
commands =
    py.test {posargs:-v}