summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFedora Python maintainers <python-devel@lists.fedoraproject.org>2020-07-15 15:23:56 +0200
committerPetr Viktorin <pviktori@redhat.com>2020-09-29 15:59:05 +0200
commit193cb5fdfb9005d73f5bae935f72c37ed06c4349 (patch)
tree166bf3816e575719e77e003ef9711ec1d8bde0aa
parentc54bf15e8729977f42f0b1ca44b015dc7c163e08 (diff)
downloadcpython-git-193cb5fdfb9005d73f5bae935f72c37ed06c4349.tar.gz
00137-skip-distutils-tests-that-fail-in-rpmbuild.patch
00137 # Some tests within distutils fail when run in an rpmbuild:
-rw-r--r--Lib/distutils/tests/test_bdist_rpm.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/distutils/tests/test_bdist_rpm.py b/Lib/distutils/tests/test_bdist_rpm.py
index 8248c08b19..78ed410c79 100644
--- a/Lib/distutils/tests/test_bdist_rpm.py
+++ b/Lib/distutils/tests/test_bdist_rpm.py
@@ -29,6 +29,7 @@ setup(name='foo', version='0.1', py_modules=['foo'],
"""
+@unittest._skipInRpmBuild("don't try to nest one rpm build inside another rpm build")
class BuildRpmTestCase(support.TempdirManager,
support.EnvironGuard,
support.LoggingSilencer,