Projet

Général

Profil

0001-tox-limit-to-django-1.11-36136.patch

Frédéric Péters, 16 septembre 2019 10:28

Télécharger (1,18 ko)

Voir les différences:

Subject: [PATCH] tox: limit to django 1.11 (#36136)

 tox.ini | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)
tox.ini
5 5

  
6 6
[tox]
7 7
toxworkdir = {env:TMPDIR:/tmp}/tox-{env:USER}/bijoe/{env:BRANCH_NAME:}
8
envlist = dj18,dj111
8
envlist = dj111
9 9

  
10 10
[testenv]
11 11
usedevelop = true
......
15 15
	BIJOE_SETTINGS_FILE=tests/settings.py
16 16
	coverage: COVERAGE=--junit-xml=test_results.xml --cov=bijoe --cov-report xml 
17 17
deps =
18
	dj18: django>=1.8,<1.9
19
	dj19: django>=1.9,<1.10
20
	dj110: django>=1.10,<1.11
21 18
	dj111: django>=1.11,<1.12
22
	dj18,dj19,dj110: Django-Select2>=5
23 19
	coverage
24 20
	pytest
25 21
	pytest-cov
......
30 26
	pyquery
31 27
commands =
32 28
        dj111: py.test {posargs: --junitxml=test_{envname}_results.xml --cov-report xml --cov-report html --cov=bijoe tests/}
33
        dj18: py.test {posargs: --junitxml=test_{envname}_results.xml tests/}
34 29
[pytest]
35 30
filterwarnings =
36 31
 once:.*
37
-