Skip to content

Commit fdc7eff

Browse files
committed
donotmerge: gather debug on why these funky issues
1 parent 1ca36b3 commit fdc7eff

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ addopts = """
101101
--cov-report=term-missing:skip-covered
102102
--no-cov-on-fail
103103
--color=yes
104+
-p faulthandler
104105
"""
105106
markers = [
106107
"live: Tests done with the live test environment."

tox.ini

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,13 @@ deps =
1717
django60: Django>=6.0,<6.1
1818
commands = pytest -vv -m "not live" {posargs}
1919
setenv =
20+
YAML_PUREPYTHON=1
2021
PYTHONPATH={toxinidir}
2122
sqlite: DATABASE_URL=sqlite:///:memory:
2223
mysql: DATABASE_URL={env:DATABASE_URL:mysql://root:mysql@127.0.0.1:3306/mysql}
2324
postgres: DATABASE_URL=postgres://postgres:postgres@localhost:5432/postgres
25+
PYTHONDEVMODE=1
26+
PYTHONMALLOC=debug
2427
passenv =
2528
GENTESTCSR
2629
PIP_NO_BINARY
@@ -31,8 +34,11 @@ passenv =
3134
extras = dev, postgres
3235
commands = pytest -vv -m "live" {posargs}
3336
setenv =
37+
YAML_PUREPYTHON=1
3438
PYTHONPATH={toxinidir}
3539
DATABASE_URL=postgres://postgres:postgres@localhost:5432/postgres
40+
PYTHONDEVMODE=1
41+
PYTHONMALLOC=debug
3642

3743
[testenv:makemigrations]
3844
extras = dev

0 commit comments

Comments
 (0)