aboutsummaryrefslogtreecommitdiffstats
path: root/testing/py3-cssselect2/tests.patch
diff options
context:
space:
mode:
Diffstat (limited to 'testing/py3-cssselect2/tests.patch')
-rw-r--r--testing/py3-cssselect2/tests.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/testing/py3-cssselect2/tests.patch b/testing/py3-cssselect2/tests.patch
new file mode 100644
index 0000000000..cea4ca7c10
--- /dev/null
+++ b/testing/py3-cssselect2/tests.patch
@@ -0,0 +1,24 @@
+--- cssselect2-0.2.1-orig/setup.cfg
++++ cssselect2-0.2.1/setup.cfg
+@@ -5,7 +5,7 @@
+ universal = 1
+
+ [tool:pytest]
+-addopts = --cov=cssselect2 --flake8 --isort cssselect2
++addopts = --cov=cssselect2 cssselect2
+ norecursedirs = dist .cache .git build *.egg-info .eggs venv
+
+ [egg_info]
+--- cssselect2-0.2.1-orig/setup.py
++++ cssselect2-0.2.1/setup.py
+@@ -29,8 +29,6 @@
+ install_requires=['tinycss2'],
+ setup_requires=pytest_runner,
+ test_suite='cssselect2.tests',
+- tests_require=[
+- 'pytest-runner', 'pytest-cov', 'pytest-flake8', 'pytest-isort'],
+- extras_require={'test': [
+- 'pytest-runner', 'pytest-cov', 'pytest-flake8', 'pytest-isort']},
++ tests_require=['pytest-runner', 'pytest-cov'],
++ extras_require={'test': ['pytest-runner', 'pytest-cov']},
+ )