File: tox.ini

package info (click to toggle)
python-django-debug-toolbar 1%3A1.6-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,456 kB
  • ctags: 534
  • sloc: python: 3,073; makefile: 191; sh: 1
file content (46 lines) | stat: -rw-r--r-- 796 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[tox]
envlist =
    py{27,33,34}-dj18,
    py{27,34,35}-dj{19,110},
    flake8,
    isort,
    readme

[testenv]
basepython =
    py27: python2.7
    py33: python3.3
    py34: python3.4
    py35: python3.5
deps =
    dj18: Django>=1.8,<1.9
    dj19: Django>=1.9,<1.10
    dj110: Django>=1.10a,<1.11
    coverage
    selenium<3.0
    sqlparse
setenv =
    PYTHONPATH = {toxinidir}
whitelist_externals = make
pip_pre = True
usedevelop = true
commands = make coverage

[testenv:flake8]
basepython = python2.7
commands = make flake8
deps = flake8

[testenv:isort]
basepython = python2.7
commands = make isort_check_only
deps = isort

[testenv:jshint]
basepython = python2.7
commands = make jshint

[testenv:readme]
basepython = python2.7
commands = python setup.py check -r -s
deps = readme_renderer