Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion bench/skip.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import pytest


SKIP = True


Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

from setuptools import setup


# TODO: if py gets upgrade to >=1.6,
# remove _width_of_current_line in terminal.py
INSTALL_REQUIRES = [
Expand Down
1 change: 0 additions & 1 deletion src/_pytest/assertion/truncate.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@

import six


DEFAULT_MAX_LINES = 8
DEFAULT_MAX_CHARS = 8 * 80
USAGE_MSG = "use '-vv' to show"
Expand Down
1 change: 0 additions & 1 deletion src/_pytest/deprecated.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
from _pytest.warning_types import RemovedInPytest4Warning
from _pytest.warning_types import UnformattedWarning


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


Expand Down
1 change: 0 additions & 1 deletion src/_pytest/hookspec.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

from _pytest.deprecated import PYTEST_LOGWARNING


hookspec = HookspecMarker("pytest")

# -------------------------------------------------------------------------
Expand Down
1 change: 0 additions & 1 deletion src/_pytest/logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
from _pytest.config import create_terminal_writer
from _pytest.pathlib import Path


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

Expand Down
1 change: 0 additions & 1 deletion src/_pytest/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
from _pytest.outcomes import exit
from _pytest.runner import collect_one_node


# exitcodes for the command line
EXIT_OK = 0
EXIT_TESTSFAILED = 1
Expand Down
1 change: 0 additions & 1 deletion src/_pytest/mark/structures.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
from ..compat import NOTSET
from _pytest.outcomes import fail


EMPTY_PARAMETERSET_OPTION = "empty_parameter_set_mark"


Expand Down
1 change: 0 additions & 1 deletion src/_pytest/pathlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

from .compat import PY36


if PY36:
from pathlib import Path, PurePath
else:
Expand Down
1 change: 0 additions & 1 deletion testing/code/test_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
import pytest
from _pytest._code import Source


astonly = pytest.mark.nothing
failsonjython = pytest.mark.xfail("sys.platform.startswith('java')")

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import argparse
import pathlib


HERE = pathlib.Path(__file__).parent
TEST_CONTENT = (HERE / "template_test.py").read_bytes()

Expand Down
1 change: 0 additions & 1 deletion testing/test_resultlog.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
from _pytest.resultlog import pytest_unconfigure
from _pytest.resultlog import ResultLog


pytestmark = pytest.mark.filterwarnings("ignore:--result-log is deprecated")


Expand Down
1 change: 0 additions & 1 deletion testing/test_warnings.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

import pytest


WARNINGS_SUMMARY_HEADER = "warnings summary"


Expand Down
8 changes: 8 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,14 @@ filterwarnings =
# Do not cause SyntaxError for invalid escape sequences in py37.
default:invalid escape sequence:DeprecationWarning
pytester_example_dir = testing/example_scripts

[flake8]
max-line-length = 120
ignore = E203,W503

[isort]
; This config mimics what reorder-python-imports does.
force_single_line = 1
known_localfolder = pytest,_pytest
known_third_party = test_source,test_excinfo
force_alphabetical_sort_within_sections = 1