Drop dependency on pytest-flake8 as it's unmaintained.

Fixes: #1051
This commit is contained in:
Martin Liska 2023-04-19 16:37:07 +02:00
parent b9c413f419
commit 25d48424b5
3 changed files with 2 additions and 4 deletions

View File

@ -37,7 +37,6 @@ BuildRequires: python3dist(pybeam)
BuildRequires: python3dist(pyenchant)
BuildRequires: python3dist(pytest)
BuildRequires: python3dist(pytest-cov)
BuildRequires: python3dist(pytest-flake8)
BuildRequires: python3dist(pytest-xdist)
BuildRequires: python3dist(pyxdg)
BuildRequires: python3dist(rpm)

View File

@ -47,7 +47,7 @@ Optional, for running the test suite:
## Testing
You will need to have all the required modules as listed on the Install section above.
You will also need `pytest`,`pytest-cov`, `pytest-xdist`, and `pytest-flake8`.
You will also need `pytest`,`pytest-cov` and `pytest-xdist`.
If all the dependencies are present you can just execute tests using:
@ -120,7 +120,7 @@ it can be normal `toml` file if you wish:
setBadness('check', 0)
addFilter('test-i-ignore')
The location of `rpmlintrc` can be set using `--rpmlintrc` option.
Or it can load any `*.rpmlintrc` or `*-rpmlintrc` that are located in the same
folder as check RPM file (or a specfile). Note the auto-loading happens only

View File

@ -52,7 +52,6 @@ setup(
tests_require=[
'pytest',
'pytest-cov',
'pytest-flake8',
'pytest-xdist',
],