]> git.pld-linux.org Git - packages/python-pyfakefs.git/commitdiff
- fix tests with pyfakefs already installed
authorJakub Bogusz <qboosh@pld-linux.org>
Thu, 14 May 2020 13:30:25 +0000 (15:30 +0200)
committerJakub Bogusz <qboosh@pld-linux.org>
Thu, 14 May 2020 13:30:25 +0000 (15:30 +0200)
python-pyfakefs.spec

index c8f976de543f4717137d09835fdcbd431c192d96..058cc12a6c26cb940a9169d9026444e47e3d64cd 100644 (file)
@@ -89,8 +89,11 @@ export LC_ALL=C.UTF-8
 
 %if %{with tests}
 %{__python} -m pyfakefs.tests.all_tests
-PYTHONPATH=$(pwd)/build-2/lib PYTEST_PLUGINS=pyfakefs.pytest_plugin \
-py.test-2 build-2/lib/pyfakefs/tests/pytest_plugin_test.py
+
+PYTHONPATH=$(pwd) \
+PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 \
+PYTEST_PLUGINS=pyfakefs.pytest_plugin \
+%{__python} -m pytest pyfakefs/tests/pytest_plugin_test.py
 %endif
 %endif
 
@@ -99,8 +102,10 @@ py.test-2 build-2/lib/pyfakefs/tests/pytest_plugin_test.py
 
 %if %{with tests}
 %{__python3} -m pyfakefs.tests.all_tests
-PYTHONPATH=$(pwd)/build-3/lib PYTEST_PLUGINS=pyfakefs.pytest_plugin \
-py.test-3 build-3/lib/pyfakefs/tests/pytest_plugin_test.py
+PYTHONPATH=$(pwd) \
+PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 \
+PYTEST_PLUGINS=pyfakefs.pytest_plugin \
+%{__python3} -m pytest pyfakefs/tests/pytest_plugin_test.py
 %endif
 %endif
 
This page took 0.251814 seconds and 4 git commands to generate.