Skip to content

Commit

Permalink
Update test_basic.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mikelkou committed Aug 16, 2023
1 parent 81d6b77 commit 39b247d
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions tests/test_basic.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
import os
import pandas as pd

from favapy import fava

data = pd.read_csv(
"/Users/tgn531/Desktop/fava/data/Example_dataset_GSE75748_sc_cell_type_ec.tsv",
sep="\t",
).iloc[:100, :100]
data_dir = os.environ.get("DATA_DIR")
if data_dir is None:
raise ValueError("DATA_DIR environment variable not set")

data_file_path = os.path.join(data_dir, "Example_dataset_GSE75748_sc_cell_type_ec.tsv")

data = pd.read_csv(data_file_path, sep="\t").iloc[:100, :100]


def test_favapy():
Expand Down

0 comments on commit 39b247d

Please sign in to comment.