Skip to content

Commit c94d8f5

Browse files
authored
Remove pytest-pep8 package since it is abandoned (#703)
1 parent 530ba42 commit c94d8f5

3 files changed

Lines changed: 1 addition & 13 deletions

File tree

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ Homepage = "https://cornac.preferred.ai"
5050
[project.optional-dependencies]
5151
tests = [
5252
"pytest",
53-
"pytest-pep8",
5453
"pytest-xdist",
5554
"pytest-cov",
5655
"Flask",

pytest.ini

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,3 @@ addopts=-v
88
--ignore=tests/cornac/utils/test_download.py
99
--ignore=tests/cornac/eval_methods/test_propensity_stratified_evaluation.py
1010

11-
# PEP-8 The following are ignored:
12-
# E501 line too long (82 > 79 characters)
13-
# E402 module level import not at top of file - temporary measure to continue adding ros python packaged in sys.path
14-
# E731 do not assign a lambda expression, use a def
15-
# W503 line break occurred before a binary operator
16-
17-
pep8ignore=* E402 \
18-
* E731 \
19-
* W503
20-
# Enable line length testing with maximum line length of 88
21-
pep8maxlinelength = 88

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ def run(self):
372372

373373
setup(
374374
ext_modules=extensions,
375-
extras_require={"tests": ["pytest", "pytest-pep8", "pytest-xdist", "pytest-cov", "Flask"]},
375+
extras_require={"tests": ["pytest", "pytest-xdist", "pytest-cov", "Flask"]},
376376
cmdclass=cmdclass,
377377
packages=find_packages(),
378378
)

0 commit comments

Comments
 (0)