From 2c1e6a159941332d7fc3c21d81008c3294acb3d0 Mon Sep 17 00:00:00 2001 From: g1rly-c0d3r Date: Mon, 22 Jun 2026 09:44:18 -0500 Subject: [PATCH 1/2] chore: add modules to requirements-testing.txt that are needed for testing --- requirements-testing.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/requirements-testing.txt b/requirements-testing.txt index 21bba85648c..aab161ee7f1 100644 --- a/requirements-testing.txt +++ b/requirements-testing.txt @@ -3,4 +3,6 @@ mypy==1.5.1 hypothesis>=6.131.9,<7 hypothesis-jsonschema==0.19.0 types-requests==2.28.5 -lxml \ No newline at end of file +lxml +coverage +pytest-django From 18c15fe6964a44a5b6d119353ac213bb4a86edfe Mon Sep 17 00:00:00 2001 From: g1rly-c0d3r Date: Wed, 24 Jun 2026 13:51:48 -0500 Subject: [PATCH 2/2] fix: expose specifyweb.settings to pytest-django --- pytest.ini | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 pytest.ini diff --git a/pytest.ini b/pytest.ini new file mode 100644 index 00000000000..c5c37d97a12 --- /dev/null +++ b/pytest.ini @@ -0,0 +1,2 @@ +[pytest] +DJANGO_SETTINGS_MODULE = specifyweb.settings