From 4380c5340e714ae121a1d6313776b769fae98359 Mon Sep 17 00:00:00 2001 From: Jeff Knupp Date: Sun, 23 Jul 2017 02:28:26 -0400 Subject: [PATCH] Fix linting issues --- pandas/conftest.py | 4 ++-- pandas/tests/io/parser/test_parsers.py | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/pandas/conftest.py b/pandas/conftest.py index 0e6472966d616..ab097b79dcd4e 100644 --- a/pandas/conftest.py +++ b/pandas/conftest.py @@ -28,8 +28,8 @@ def pytest_runtest_setup(item): if 'high_memory' in item.keywords and not item.config.getoption( "--run-highmemory"): - pytest.skip( - "skipping high memory test since --run-highmemory was not set") + pytest.skip( + "skipping high memory test since --run-highmemory was not set") # Configurations for all tests and all test modules diff --git a/pandas/tests/io/parser/test_parsers.py b/pandas/tests/io/parser/test_parsers.py index 466cafd85a515..f23bd24f5cbe3 100644 --- a/pandas/tests/io/parser/test_parsers.py +++ b/pandas/tests/io/parser/test_parsers.py @@ -27,6 +27,7 @@ from .python_parser_only import PythonParserTests from .dtypes import DtypeTests + @pytest.mark.high_memory def test_bytes_exceed_2gb(): """Read from a "CSV" that has a column larger than 2GB.