summaryrefslogtreecommitdiff
path: root/devel/py-pytest4-cache/files
diff options
context:
space:
mode:
Diffstat (limited to 'devel/py-pytest4-cache/files')
-rw-r--r--devel/py-pytest4-cache/files/patch-setup.py36
1 files changed, 0 insertions, 36 deletions
diff --git a/devel/py-pytest4-cache/files/patch-setup.py b/devel/py-pytest4-cache/files/patch-setup.py
deleted file mode 100644
index 75426dd0c02d..000000000000
--- a/devel/py-pytest4-cache/files/patch-setup.py
+++ /dev/null
@@ -1,36 +0,0 @@
---- setup.py.orig 2013-06-04 19:10:04 UTC
-+++ setup.py
-@@ -1,4 +1,24 @@
- from setuptools import setup
-+from setuptools.command.test import test as TestCommand
-+
-+class PyTest(TestCommand):
-+ user_options = [('pytest-args=', 'a', "Arguments to pass to py.test")]
-+
-+ def initialize_options(self):
-+ TestCommand.initialize_options(self)
-+ self.pytest_args = []
-+
-+ def finalize_options(self):
-+ TestCommand.finalize_options(self)
-+ self.test_args = []
-+ self.test_suite = True
-+
-+ def run_tests(self):
-+ # import here, because outside the eggs aren't loaded
-+ import pytest
-+ errno = pytest.main(self.pytest_args)
-+ sys.exit(errno)
-+
- setup(
- name='pytest-cache',
- description='pytest plugin with mechanisms for caching across test runs',
-@@ -10,6 +30,8 @@ setup(
- py_modules=['pytest_cache'],
- entry_points={'pytest11': ['cacheprovider = pytest_cache']},
- install_requires=['pytest>=2.2', 'execnet>=1.1.dev1', ],
-+ tests_require=['pytest'],
-+ cmdclass={'test': PyTest},
- classifiers=[
- 'Development Status :: 3 - Alpha',
- 'Intended Audience :: Developers',