Skip to content

Commit

Permalink
Fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffknupp committed Jul 23, 2017
1 parent 7b1cd8d commit 4380c53
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pandas/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions pandas/tests/io/parser/test_parsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 4380c53

Please sign in to comment.