Skip to content

Commit 0d31e85

Browse files
committed
Run isort
1 parent 75e1fde commit 0d31e85

File tree

13 files changed

+0
-13
lines changed

13 files changed

+0
-13
lines changed

bench/skip.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
import pytest
44

5-
65
SKIP = True
76

87

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
from setuptools import setup
44

5-
65
# TODO: if py gets upgrade to >=1.6,
76
# remove _width_of_current_line in terminal.py
87
INSTALL_REQUIRES = [

src/_pytest/assertion/truncate.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212

1313
import six
1414

15-
1615
DEFAULT_MAX_LINES = 8
1716
DEFAULT_MAX_CHARS = 8 * 80
1817
USAGE_MSG = "use '-vv' to show"

src/_pytest/deprecated.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
from _pytest.warning_types import RemovedInPytest4Warning
1717
from _pytest.warning_types import UnformattedWarning
1818

19-
2019
YIELD_TESTS = "yield tests were removed in pytest 4.0 - {name} will be ignored"
2120

2221

src/_pytest/hookspec.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
from _pytest.deprecated import PYTEST_LOGWARNING
55

6-
76
hookspec = HookspecMarker("pytest")
87

98
# -------------------------------------------------------------------------

src/_pytest/logging.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
from _pytest.config import create_terminal_writer
1616
from _pytest.pathlib import Path
1717

18-
1918
DEFAULT_LOG_FORMAT = "%(filename)-25s %(lineno)4d %(levelname)-8s %(message)s"
2019
DEFAULT_LOG_DATE_FORMAT = "%H:%M:%S"
2120

src/_pytest/main.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
from _pytest.outcomes import exit
2525
from _pytest.runner import collect_one_node
2626

27-
2827
# exitcodes for the command line
2928
EXIT_OK = 0
3029
EXIT_TESTSFAILED = 1

src/_pytest/mark/structures.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
from ..compat import NOTSET
1313
from _pytest.outcomes import fail
1414

15-
1615
EMPTY_PARAMETERSET_OPTION = "empty_parameter_set_mark"
1716

1817

src/_pytest/pathlib.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919

2020
from .compat import PY36
2121

22-
2322
if PY36:
2423
from pathlib import Path, PurePath
2524
else:

testing/code/test_source.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
import pytest
1717
from _pytest._code import Source
1818

19-
2019
astonly = pytest.mark.nothing
2120
failsonjython = pytest.mark.xfail("sys.platform.startswith('java')")
2221

0 commit comments

Comments
 (0)