From fb1633a3f3a7292b9abfb4e40232340a93779384 Mon Sep 17 00:00:00 2001
From: Venkat Malladi <venkat.malladi@utsouthwestern.edu>
Date: Sat, 5 Jan 2019 20:58:23 -0600
Subject: [PATCH] Add in test to see if output exists.

---
 workflow/tests/test_experiment_qc.py | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/workflow/tests/test_experiment_qc.py b/workflow/tests/test_experiment_qc.py
index 875aea6..308ebe2 100644
--- a/workflow/tests/test_experiment_qc.py
+++ b/workflow/tests/test_experiment_qc.py
@@ -40,5 +40,8 @@ def test_experiment_qc_singleend():
 
 @pytest.mark.integration
 def test_experiment_qc_pairedend():
-    # Do the same thing for paired end data
-    pass
+    assert os.path.exists(os.path.join(test_output_path, 'sample_mbs.npz'))
+    assert os.path.exists(os.path.join(test_output_path, 'heatmap_SpearmanCorr.png'))
+    assert os.path.exists(os.path.join(test_output_path, 'coverage.png'))
+    assert os.path.exists(os.path.join(test_output_path, 'ENCLB568IYX_fingerprint.png'))
+    assert os.path.exists(os.path.join(test_output_path, 'ENCLB637LZP_fingerprint.png'))
-- 
GitLab