Merge pull request #1342 from jooola/feat/ci_start_linting_again

Follow up #1339
This commit is contained in:
Kyle Robbertze 2021-09-14 12:12:17 +00:00 committed by GitHub
commit b9bfa618a6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 41 additions and 56 deletions

View file

@ -2,11 +2,12 @@ all: lint test
include ../../tools/python.mk
PIP_INSTALL := --editable .[dev]
PIP_INSTALL := --editable .
PYLINT_ARG := api_clients tests
MYPY_ARG := api_clients tests
PYTEST_ARG := --cov=api_clients tests
format: .format
lint: .pylint .mypy
test: .pytest
clean: .clean

View file

@ -24,15 +24,5 @@ setup(
"python-dateutil>=2.7.0",
"requests",
],
extras_require={
"prod": [],
"dev": [
"mypy",
"pylint",
"pytest",
"pytest-cov",
"pytest-xdist",
],
},
zip_safe=False,
)