Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Aug 17, 2023
1 parent a118964 commit b302121
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_fava.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

from favapy import fava


@pytest.fixture
def data_dir() -> Path:
data_dir = os.environ.get("DATA_DIR")
Expand All @@ -13,9 +14,10 @@ def data_dir() -> Path:
else:
return Path(data_dir)


@pytest.fixture
def test_dataset(data_dir) -> pd.DataFrame:
data_file_path = data_dir / "Example_dataset_GSE75748_sc_cell_type_ec.tsv"
data_file_path = data_dir / "Example_dataset_GSE75748_sc_cell_type_ec.tsv"
return pd.read_csv(data_file_path, sep="\t").iloc[:100, :100]


Expand Down

0 comments on commit b302121

Please sign in to comment.