From b302121d26a81482e5c7613c795d147e4ad584d4 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 17 Aug 2023 12:17:03 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- tests/test_fava.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test_fava.py b/tests/test_fava.py index c3ff68d..5aba314 100644 --- a/tests/test_fava.py +++ b/tests/test_fava.py @@ -5,6 +5,7 @@ from favapy import fava + @pytest.fixture def data_dir() -> Path: data_dir = os.environ.get("DATA_DIR") @@ -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]