We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b1cd8d commit 4380c53Copy full SHA for 4380c53
pandas/conftest.py
@@ -28,8 +28,8 @@ def pytest_runtest_setup(item):
28
29
if 'high_memory' in item.keywords and not item.config.getoption(
30
"--run-highmemory"):
31
- pytest.skip(
32
- "skipping high memory test since --run-highmemory was not set")
+ pytest.skip(
+ "skipping high memory test since --run-highmemory was not set")
33
34
35
# Configurations for all tests and all test modules
pandas/tests/io/parser/test_parsers.py
@@ -27,6 +27,7 @@
27
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.
0 commit comments