File: tox.ini

package info (click to toggle)
django-assets 2.0-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 368 kB
  • sloc: python: 986; makefile: 129; sh: 6
file content (26 lines) | stat: -rw-r--r-- 687 bytes parent folder | download | duplicates (3)
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
[tox]
# See the version matrix here: https://www.djangoproject.com/download/
envlist = 
    django11-{py34,py35,py36,py37,pypy3}
    django22-{py35,py36,py37,pypy3}
    django30-{py36,py37,py38,pypy3}
    djangotrunk-{py36,py37,py38,pypy3}


[testenv]
commands = nosetests {posargs}
install_command = pip install --pre {opts} {packages}
ignore_outcome =
    djangotrunk: True
deps =
    nose==1.3.7
    ipdb>=0.8.0
    https://github.com/miracle2k/webassets/archive/master.tar.gz
    django11: Django>=1.11,<1.12
    django22: Django>=2.2,<2.3
    django30: Django>=3.0,<3.1
    djangotrunk: https://github.com/django/django/archive/master.tar.gz
passenv =
    CI
    TRAVIS
    TRAVIS_*