diff --git a/bench/skip.py b/bench/skip.py index 25559cc27..2fc8240e5 100644 --- a/bench/skip.py +++ b/bench/skip.py @@ -2,7 +2,6 @@ from six.moves import range import pytest - SKIP = True diff --git a/setup.py b/setup.py index f5150243a..89e48c6b5 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,6 @@ import os from setuptools import setup - # TODO: if py gets upgrade to >=1.6, # remove _width_of_current_line in terminal.py INSTALL_REQUIRES = [ diff --git a/src/_pytest/assertion/truncate.py b/src/_pytest/assertion/truncate.py index d19c8b61e..69d6acdef 100644 --- a/src/_pytest/assertion/truncate.py +++ b/src/_pytest/assertion/truncate.py @@ -12,7 +12,6 @@ import os import six - DEFAULT_MAX_LINES = 8 DEFAULT_MAX_CHARS = 8 * 80 USAGE_MSG = "use '-vv' to show" diff --git a/src/_pytest/deprecated.py b/src/_pytest/deprecated.py index 4afde6902..6134ca77b 100644 --- a/src/_pytest/deprecated.py +++ b/src/_pytest/deprecated.py @@ -16,7 +16,6 @@ from _pytest.warning_types import PytestDeprecationWarning 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" diff --git a/src/_pytest/hookspec.py b/src/_pytest/hookspec.py index 3b6c9a7d1..0641e3bc5 100644 --- a/src/_pytest/hookspec.py +++ b/src/_pytest/hookspec.py @@ -3,7 +3,6 @@ from pluggy import HookspecMarker from _pytest.deprecated import PYTEST_LOGWARNING - hookspec = HookspecMarker("pytest") # ------------------------------------------------------------------------- diff --git a/src/_pytest/logging.py b/src/_pytest/logging.py index 7e906deab..22db44301 100644 --- a/src/_pytest/logging.py +++ b/src/_pytest/logging.py @@ -15,7 +15,6 @@ from _pytest.compat import dummy_context_manager 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" diff --git a/src/_pytest/main.py b/src/_pytest/main.py index 6e639d872..d8478d4fc 100644 --- a/src/_pytest/main.py +++ b/src/_pytest/main.py @@ -24,7 +24,6 @@ from _pytest.deprecated import PYTEST_CONFIG_GLOBAL from _pytest.outcomes import exit from _pytest.runner import collect_one_node - # exitcodes for the command line EXIT_OK = 0 EXIT_TESTSFAILED = 1 diff --git a/src/_pytest/mark/structures.py b/src/_pytest/mark/structures.py index c8a25d156..d65d8b9d8 100644 --- a/src/_pytest/mark/structures.py +++ b/src/_pytest/mark/structures.py @@ -12,7 +12,6 @@ from ..compat import MappingMixin from ..compat import NOTSET from _pytest.outcomes import fail - EMPTY_PARAMETERSET_OPTION = "empty_parameter_set_mark" diff --git a/src/_pytest/pathlib.py b/src/_pytest/pathlib.py index 5ecdd6026..5dd00e74f 100644 --- a/src/_pytest/pathlib.py +++ b/src/_pytest/pathlib.py @@ -19,7 +19,6 @@ from six.moves import map from .compat import PY36 - if PY36: from pathlib import Path, PurePath else: diff --git a/testing/code/test_source.py b/testing/code/test_source.py index fc5eaed04..965838dae 100644 --- a/testing/code/test_source.py +++ b/testing/code/test_source.py @@ -16,7 +16,6 @@ import _pytest._code import pytest from _pytest._code import Source - astonly = pytest.mark.nothing failsonjython = pytest.mark.xfail("sys.platform.startswith('java')") diff --git a/testing/example_scripts/perf_examples/collect_stats/generate_folders.py b/testing/example_scripts/perf_examples/collect_stats/generate_folders.py index 94b3f013f..ff1eaf7d6 100644 --- a/testing/example_scripts/perf_examples/collect_stats/generate_folders.py +++ b/testing/example_scripts/perf_examples/collect_stats/generate_folders.py @@ -1,7 +1,6 @@ import argparse import pathlib - HERE = pathlib.Path(__file__).parent TEST_CONTENT = (HERE / "template_test.py").read_bytes() diff --git a/testing/test_resultlog.py b/testing/test_resultlog.py index 2c5175246..aba5713af 100644 --- a/testing/test_resultlog.py +++ b/testing/test_resultlog.py @@ -12,7 +12,6 @@ from _pytest.resultlog import pytest_configure from _pytest.resultlog import pytest_unconfigure from _pytest.resultlog import ResultLog - pytestmark = pytest.mark.filterwarnings("ignore:--result-log is deprecated") diff --git a/testing/test_warnings.py b/testing/test_warnings.py index 984aae027..1b4231edc 100644 --- a/testing/test_warnings.py +++ b/testing/test_warnings.py @@ -8,7 +8,6 @@ import six import pytest - WARNINGS_SUMMARY_HEADER = "warnings summary"