diff --git a/tests/test_pooled_post.py b/tests/test_pooled_post.py index 7baf31c..f5363d7 100644 --- a/tests/test_pooled_post.py +++ b/tests/test_pooled_post.py @@ -24,7 +24,7 @@ def open_side_effect(name): def test__ingest_sampler_results_gamma_theta(): with patch("builtins.open", mock_open(read_data="bla\n#gamma = 0.967662\n\nlolz\n#theta = 0.88\neof")): - out = pooled_post._ingest_sampler_results_gamma_theta(open("debug/dbg.dbg"), "shorah") + out = pooled_post._ingest_sampler_results_gamma_theta(open("work/debug/dbg.dbg"), "shorah") np.testing.assert_almost_equal(out[0][0], -0.032872426234558716) np.testing.assert_almost_equal(out[0][1], -3.431512269664515) diff --git a/tests/test_shotgun_e2e.py b/tests/test_shotgun_e2e.py index b80c536..6457f88 100644 --- a/tests/test_shotgun_e2e.py +++ b/tests/test_shotgun_e2e.py @@ -5,7 +5,7 @@ import shutil cwd = "./data_1" -f_path = "raw_reads/w-HXB2-2804-3004.extended-ref.fas" +f_path = "work/raw_reads/w-HXB2-2804-3004.extended-ref.fas" base_files = [] @pytest.fixture(scope="session", autouse=True)