Skip to content

Commit 4b164d9

Browse files
authored
Merge pull request #4099 from asottile/re-enable_linting_windows
re-enable linting tox env on windows
2 parents b8c30aa + 11a0721 commit 4b164d9

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
exclude: doc/en/example/py2py3/test_py2.py
22
repos:
33
- repo: https://github.com/ambv/black
4-
rev: 18.9b0
4+
rev: 18.6b4
55
hooks:
66
- id: black
77
args: [--safe, --quiet]

appveyor.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
environment:
22
matrix:
3+
- TOXENV: "linting"
4+
PYTEST_NO_COVERAGE: "1"
35
- TOXENV: "py27"
46
- TOXENV: "py34"
57
- TOXENV: "py35"

src/_pytest/config/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ def _importconftest(self, conftestpath):
423423
and not self._using_pyargs
424424
):
425425
from _pytest.deprecated import (
426-
PYTEST_PLUGINS_FROM_NON_TOP_LEVEL_CONFTEST,
426+
PYTEST_PLUGINS_FROM_NON_TOP_LEVEL_CONFTEST
427427
)
428428

429429
warnings.warn_explicit(

0 commit comments

Comments
 (0)