Skip to content

Commit 5e39179

Browse files
author
Alexander Bogushov
committed
Remove flake8 checks because there is error.
1 parent 162cfcb commit 5e39179

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description-file = README.md
77

88
[tool:pytest]
99
DJANGO_SETTINGS_MODULE=tests.django_settings
10-
addopts= --doctest-modules --flake8 --nomigrations
10+
addopts= --doctest-modules --nomigrations
1111
testpaths = django_admin_json_editor tests
1212

1313
flake8-max-complexity = 10

setup.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,13 @@
2525
'Django',
2626
]
2727

28+
setup_requires = [
29+
'pytest-runner',
30+
]
31+
2832
test_requirements = [
2933
'pytest',
3034
'pytest-django',
31-
'pytest-runner',
32-
'pytest-flake8',
33-
'flake8-isort',
3435
]
3536

3637
setup(
@@ -60,5 +61,6 @@
6061
],
6162
install_requires=requirements,
6263
test_suite='tests',
64+
setup_requires=setup_requires,
6365
tests_require=test_requirements,
6466
)

0 commit comments

Comments
 (0)