File: tox.ini

package info (click to toggle)
python-djangosaml2 1.11.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 700 kB
  • sloc: python: 3,066; xml: 327; makefile: 18; sh: 9
file content (21 lines) | stat: -rw-r--r-- 398 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
[tox]
envlist =
    py{3.9,3.10,3.11,3.12,3.13}-django{4.2,5.0,5.1}

[testenv]
commands =
    pip list
    python tests/run_tests.py

deps =
    django4.2: django~=4.2
    django5.0: django~=5.0
    django5.1: django~=5.1
    djangomaster: https://github.com/django/django/archive/master.tar.gz
    .

ignore_outcome =
    djangomaster: True

setenv =
    PYTHONWARNINGS=module::DeprecationWarning