diff --git a/workflow/tests/test_diff_peaks.py b/workflow/tests/test_diff_peaks.py index 6b4a6ed272f2ef8ad530a600aee52745da9e2656..ad66c4a1a667110790e5de626dbdad7820751888 100644 --- a/workflow/tests/test_diff_peaks.py +++ b/workflow/tests/test_diff_peaks.py @@ -12,20 +12,11 @@ test_output_path = os.path.dirname(os.path.abspath(__file__)) + \ @pytest.mark.singleend def test_diff_peaks_singleend_single_rep(): - assert os.path.exists(os.path.join(test_output_path, 'no_diffbind.bed')) - assert os.path.exists(os.path.join(test_output_path, 'no_diffbind.csv')) - assert os.path.exists(os.path.join(test_output_path, 'no_heatmap.pdf')) - assert os.path.exists(os.path.join(test_output_path, 'no_pca.pdf')) - assert os.path.exists(os.path.join(test_output_path, 'normcount_peaksets.pdf')) - + assert os.path.isdir(test_output_path) == False @pytest.mark.pairedend def test_annotate_peaks_pairedend_single_rep(): - assert os.path.exists(os.path.join(test_output_path, 'no_diffbind.bed')) - assert os.path.exists(os.path.join(test_output_path, 'no_diffbind.csv')) - assert os.path.exists(os.path.join(test_output_path, 'no_heatmap.pdf')) - assert os.path.exists(os.path.join(test_output_path, 'no_pca.pdf')) - assert os.path.exists(os.path.join(test_output_path, 'normcount_peaksets.pdf')) + assert os.path.isdir(test_output_path) == False @pytest.mark.singlediff def test_diff_peaks_singleend_multiple_rep():