Projet

Général

Profil

0003-tox.ini-allow-running-inside-pg_virtualenv-43108.patch

Benjamin Dauvergne, 19 mai 2020 20:31

Télécharger (789 octets)

Voir les différences:

Subject: [PATCH 3/3] tox.ini: allow running inside pg_virtualenv (#43108)

Used to test with very few locks :

    pg_virtualenv -o max_locks_per_transaction=10 tox
 tox.ini | 7 +++++++
 1 file changed, 7 insertions(+)
tox.ini
12 12
setenv =
13 13
	coverage: COVERAGE=--junit-xml=junit.xml --cov=wcs_olap --cov-report xml --cov-report html
14 14
	WCS_MANAGE=wcs/manage.py
15
	PGDATABASE=postgres
16
passenv=
17
  # support for pg_virtualenv
18
  PGPORT
19
  PGHOST
20
  PGUSER
21
  PGPASSWORD
15 22
deps =
16 23
	coverage
17 24
	pytest
18
-