File: tox.ini

package info (click to toggle)
python-django-bootstrap-form 3.4-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 776 kB
  • sloc: javascript: 1,402; python: 426; makefile: 138
file content (23 lines) | stat: -rw-r--r-- 422 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[tox]
envlist = {py37,py38,py39,py310}-dj{22,32,40}
skipsdist=True


[testenv]
basepython =
    py37: python3.7
    py38: python3.8
    py39: python3.9
    py310: python3.10
deps = 
    pytest
    dj22: django>=2.2,<3.0
    dj32: django>=3.2,<4.0
    dj40: django>=4.0,<4.1
commands = python setup.py test


[testenv:py310-cov]
deps =
    dj40: Django>=4.0,<4.1
command = coverage run --source=bootstrapform setup.py test