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