Skip to content

Commit bf8e51c

Browse files
- Skipping the pathway data intergrety tests. Just skipping as this is typically used for local testing.
1 parent b3db747 commit bf8e51c

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

tests/data/test_data_integrity.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,10 @@ def test_gene_pathway_coverage(data_dir):
3333
of biological Hallmark pathways.
3434
"""
3535
num_genes = 1000
36-
genes = load_global_genes(data_dir, num_genes)
36+
try:
37+
genes = load_global_genes(data_dir, num_genes)
38+
except FileNotFoundError:
39+
pytest.skip("global_genes.json not found. Skipping data integrity test.")
3740

3841
# Load Hallmarks
3942
url = MSIGDB_URLS["hallmarks"]

0 commit comments

Comments
 (0)