File: tox.ini

package info (click to toggle)
python-django-compressor 4.5.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,108 kB
  • sloc: python: 4,900; makefile: 123; javascript: 5
file content (24 lines) | stat: -rw-r--r-- 505 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
[tox]
envlist =
    {py38,py39,py310,py311}-4.2.X
    {py310,py311,py312}-5.0.X
    {py310,py311,py312}-5.1.X
[testenv]
basepython =
    py38: python3.8
    py39: python3.9
    py310: python3.10
    py311: python3.11
    py312: python3.12
usedevelop = true
setenv =
    CPPFLAGS=-O0
allowlist_externals = /usr/bin/make
commands =
    django-admin --version
    make test
deps =
    4.2.X: Django>=4.2,<5.0
    5.0.X: Django>=5.0,<5.1
    5.1.X: Django>=5.1b1,<5.2
    -r{toxinidir}/requirements/tests.txt