diff options
Diffstat (limited to 'tests/integration/test_wgcna.py')
-rw-r--r-- | tests/integration/test_wgcna.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/integration/test_wgcna.py b/tests/integration/test_wgcna.py index 078449d..5880b40 100644 --- a/tests/integration/test_wgcna.py +++ b/tests/integration/test_wgcna.py @@ -3,6 +3,8 @@ from unittest import TestCase from unittest import mock +import pytest + from gn3.app import create_app @@ -12,6 +14,7 @@ class WgcnaIntegrationTest(TestCase): def setUp(self): self.app = create_app().test_client() + @pytest.mark.integration_test @mock.patch("gn3.api.wgcna.call_wgcna_script") def test_wgcna_endpoint(self, mock_wgcna_script): """test /api/wgcna/run_wgcna endpoint""" |