From 9b5844dd24680e6400ac6f175d213a57f3cfacaad663c9369636d0a2ad811e98 Mon Sep 17 00:00:00 2001 From: Daniel Garcia Moreno Date: Tue, 4 Nov 2025 12:07:34 +0100 Subject: [PATCH] Skip httpd integration tests We can't run these tests with abuild user in build environment. --- python-pytest-server-fixtures.changes | 6 ++++++ python-pytest-server-fixtures.spec | 5 ++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/python-pytest-server-fixtures.changes b/python-pytest-server-fixtures.changes index 59d42d2..974e09b 100644 --- a/python-pytest-server-fixtures.changes +++ b/python-pytest-server-fixtures.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Nov 4 11:06:31 UTC 2025 - Daniel Garcia + +- Skip httpd integration tests, we can't run these tests with abuild + user in build environment. + ------------------------------------------------------------------- Mon Jul 14 15:24:24 UTC 2025 - Dirk Müller diff --git a/python-pytest-server-fixtures.spec b/python-pytest-server-fixtures.spec index df5ffde..2ab78df 100644 --- a/python-pytest-server-fixtures.spec +++ b/python-pytest-server-fixtures.spec @@ -108,7 +108,10 @@ export SERVER_FIXTURES_HTTPD_MODULES=$(ls -1d /usr/lib*/apache2) export SERVER_FIXTURES_HTTPD=httpd export SERVER_FIXTURES_REDIS=%{_sbindir}/redis-server # gh#man-group/pytest-plugins#177 -%pytest -k 'not test_init' +donttest="test_init" +# httpd -f can't be run as abuild user +# mkdir: cannot create directory ‘/etc/apache2/sysconfig.d/’: Permission denied +%pytest -k "not ($donttest)" --ignore tests/integration/test_httpd_proxy_server.py %files %{python_files} %doc CHANGES.md README.md