File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -26,8 +26,10 @@ def pytest_runtest_setup(item):
2626 if 'network' in item .keywords and item .config .getoption ("--skip-network" ):
2727 pytest .skip ("skipping due to --skip-network" )
2828
29- if 'high_memory' in item .keywords and not item .config .getoption ("--run-highmemory" ):
30- pytest .skip ("skipping high memory test since --run-highmemory was not set" )
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" )
3133
3234
3335# Configurations for all tests and all test modules
Original file line number Diff line number Diff line change @@ -33,7 +33,8 @@ def test_bytes_exceed_2gb():
3333
3434 GH 16798
3535 """
36- csv = StringIO ('strings\n ' + '\n ' .join (['x' * (1 << 20 ) for _ in range (2100 )]))
36+ csv = StringIO ('strings\n ' + '\n ' .join (
37+ ['x' * (1 << 20 ) for _ in range (2100 )]))
3738 df = read_csv (csv , low_memory = False )
3839 assert not df .empty
3940
You can’t perform that action at this time.
0 commit comments