Projet

Général

Profil

0009-tox-test-against-xmschema-1.0-62631.patch

Nicolas Roche, 11 mars 2022 13:00

Télécharger (1,2 ko)

Voir les différences:

Subject: [PATCH 9/9] tox: test against xmschema 1.0 (#62631)

 tox.ini | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
tox.ini
1 1
[tox]
2 2
toxworkdir = {env:TMPDIR:/tmp}/tox-{env:USER}/passerelle/{env:BRANCH_NAME:}
3
envlist = py3-django22-codestyle-coverage
3
envlist = py3-django22-xmlschema14-codestyle-coverage,py3-django22-xmlschema10
4 4

  
5 5
[testenv]
6 6
usedevelop = True
7 7
setenv =
8 8
  DJANGO_SETTINGS_MODULE=passerelle.settings
9 9
  PASSERELLE_SETTINGS_FILE=tests/settings.py
10 10
  BRANCH_NAME={env:BRANCH_NAME:}
11 11
  WCSCTL=wcs/wcsctl.py
12 12
  SETUPTOOLS_USE_DISTUTILS=stdlib
13 13
  fast: FAST=--nomigrations
14 14
  coverage: COVERAGE=--junitxml=junit-{envname}.xml --cov-report xml --cov-report html --cov=passerelle/ --cov-config .coveragerc -Wignore
15 15
deps =
16 16
  django22: django>=2.2,<2.3
17
  xmlschema14: xmlschema>=1.1
18
  xmlschema10: xmlschema<1.1
17 19
  psycopg2-binary<2.9
18 20
  pytest-cov
19 21
  pytest-django
20 22
  pytest!=6.0.0
21 23
  WebTest
22 24
  mock<4
23 25
  httmock
24 26
  python-dateutil
25
-