mirror of https://github.com/pypa/pep517.git
Merge pull request #147 from pypa/rm-pytest-flake8
Run flake8 static checks separately from test suitepull/149/head
commit
cc68a414be
|
@ -6,7 +6,7 @@ env:
|
|||
FORCE_COLOR: 1
|
||||
|
||||
jobs:
|
||||
isort:
|
||||
static-checks:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
|
@ -23,7 +23,7 @@ jobs:
|
|||
pip install tox tox-venv
|
||||
|
||||
- name: Run tests
|
||||
run: tox -e isort
|
||||
run: tox -e isort,flake8
|
||||
|
||||
tests:
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
pytest
|
||||
pytest-flake8
|
||||
flake8
|
||||
testpath
|
||||
tomli
|
||||
|
|
|
@ -2,10 +2,7 @@
|
|||
addopts =
|
||||
--strict-config
|
||||
--strict-markers
|
||||
--flake8
|
||||
xfail_strict = True
|
||||
junit_family = xunit2
|
||||
filterwarnings =
|
||||
error
|
||||
# Suppress deprecation warning in flake8
|
||||
ignore:SelectableGroups dict interface is deprecated::flake8
|
||||
|
|
Loading…
Reference in New Issue