Blame python-tinycss2-disable-flake8-isort-for-pytest.patch

db43cdd
diff --git a/pyproject.toml b/pyproject.toml
db43cdd
index 41535ed..30dbcd4 100644
db43cdd
--- a/pyproject.toml
db43cdd
+++ b/pyproject.toml
db43cdd
@@ -32,7 +32,7 @@ classifiers = [
cb41dc0
 
db43cdd
 [tool.flit.metadata.requires-extra]
db43cdd
 doc = ['sphinx', 'sphinx_rtd_theme']
db43cdd
-test = ['pytest', 'pytest-cov', 'pytest-flake8', 'pytest-isort', 'coverage[toml]']
db43cdd
+test = ['pytest', 'pytest-cov', 'coverage[toml]']
cb41dc0
 
db43cdd
 [tool.flit.metadata.urls]
db43cdd
 Documentation = 'https://tinycss2.readthedocs.io/'
db43cdd
@@ -44,7 +44,7 @@ Donation = 'https://opencollective.com/courtbouillon'
db43cdd
 exclude = ['.*']
a71c7fc
 
db43cdd
 [tool.pytest.ini_options]
db43cdd
-addopts = '--isort --flake8 --cov'
db43cdd
+addopts = '--cov'
db43cdd
 norecursedirs = ['tests/css-parsing-tests']
a71c7fc
 
db43cdd
 [tool.coverage.run]
db43cdd
diff --git a/setup.py b/setup.py
db43cdd
index 8e8a09c..8901670 100644
db43cdd
--- a/setup.py
db43cdd
+++ b/setup.py
db43cdd
@@ -16,8 +16,6 @@ extras_require = \
db43cdd
 {'doc': ['sphinx', 'sphinx_rtd_theme'],
db43cdd
  'test': ['pytest',
db43cdd
           'pytest-cov',
db43cdd
-          'pytest-flake8',
db43cdd
-          'pytest-isort',
db43cdd
           'coverage[toml]']}
db43cdd
 
db43cdd
 setup(name='tinycss2',