Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
119 changes: 0 additions & 119 deletions pandas/tests/io/parser/comment.py

This file was deleted.

136 changes: 0 additions & 136 deletions pandas/tests/io/parser/compression.py

This file was deleted.

7 changes: 7 additions & 0 deletions pandas/tests/io/parser/conftest.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import os

import pytest

from pandas import read_csv, read_table
Expand Down Expand Up @@ -49,6 +51,11 @@ def csv_dir_path(datapath):
return datapath("io", "parser", "data")


@pytest.fixture
def csv1(csv_dir_path):
return os.path.join(csv_dir_path, "test1.csv")


_cParserHighMemory = CParserHighMemory()
_cParserLowMemory = CParserLowMemory()
_pythonParser = PythonParser()
Expand Down
Loading