]> git.pld-linux.org Git - packages/python3-tinycss2.git/blob - disable-flake8-isort-for-pytest.patch
- new
[packages/python3-tinycss2.git] / disable-flake8-isort-for-pytest.patch
1 diff --git a/pyproject.toml b/pyproject.toml
2 index 41535ed..30dbcd4 100644
3 --- a/pyproject.toml
4 +++ b/pyproject.toml
5 @@ -32,7 +32,7 @@ classifiers = [
6  
7  [tool.flit.metadata.requires-extra]
8  doc = ['sphinx', 'sphinx_rtd_theme']
9 -test = ['pytest', 'pytest-cov', 'pytest-flake8', 'pytest-isort', 'coverage[toml]']
10 +test = ['pytest', 'pytest-cov', 'coverage[toml]']
11  
12  [tool.flit.metadata.urls]
13  Documentation = 'https://tinycss2.readthedocs.io/'
14 @@ -44,7 +44,7 @@ Donation = 'https://opencollective.com/courtbouillon'
15  exclude = ['.*']
16  
17  [tool.pytest.ini_options]
18 -addopts = '--isort --flake8 --cov'
19 +addopts = '--cov'
20  norecursedirs = ['tests/css-parsing-tests']
21  
22  [tool.coverage.run]
23 diff --git a/setup.py b/setup.py
24 index 8e8a09c..8901670 100644
25 --- a/setup.py
26 +++ b/setup.py
27 @@ -16,8 +16,6 @@ extras_require = \
28  {'doc': ['sphinx', 'sphinx_rtd_theme'],
29   'test': ['pytest',
30            'pytest-cov',
31 -          'pytest-flake8',
32 -          'pytest-isort',
33            'coverage[toml]']}
34  
35  setup(name='tinycss2',
This page took 0.159768 seconds and 3 git commands to generate.