File: tox.ini

package info (click to toggle)
flask-restful 0.3.10-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,312 kB
  • sloc: python: 3,945; makefile: 277; pascal: 26; sh: 20
file content (21 lines) | stat: -rw-r--r-- 531 bytes parent folder | download | duplicates (4)
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,34,35,36,37,38}-flask{0_10,0_12,10}

deps =
    flask0_10: flask>=0.10,<0.11
    flask0_12: flask>=0.12,<1.0
    flask10:   flask>=1.0,<1.1

[testenv]
usedevelop = true
commands =
    pip install -e .
    nosetests
deps =
    -r{toxinidir}/tests/requirements.txt