diff --git a/.github/workflows/continuous_integration.yml b/.github/workflows/continuous_integration.yml index ab564f0..54722da 100644 --- a/.github/workflows/continuous_integration.yml +++ b/.github/workflows/continuous_integration.yml @@ -29,4 +29,4 @@ jobs: - name: Test with pytest run: | conda install pytest - pytest \ No newline at end of file + pytest --ignore=examples \ No newline at end of file diff --git a/examples/time_test.py b/examples/time_test.py index 59feda9..92dc6cb 100644 --- a/examples/time_test.py +++ b/examples/time_test.py @@ -16,10 +16,8 @@ start_loading_t = time.time() start_loading_m = memory_usage()[0] -# !! Uncomment and modify the following two lines and remove the third one -# path = "drosophila/Drosophila_melanogaster.BDGP6.46.112.gtf" ## modify if needed -# d = pr.read_gtf(path) -d = pr.PyRanges({"Feature": []}) +path = "drosophila/Drosophila_melanogaster.BDGP6.46.112.gtf" ## modify if needed +d = pr.read_gtf(path) end_loading_t = time.time() end_loading_m = memory_usage()[0]