We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c306e1 commit a44bb87Copy full SHA for a44bb87
test/test_integration.py
@@ -9,6 +9,7 @@
9
import logging
10
import sys
11
import requests
12
+import pytest
13
14
pkg_root = os.path.abspath(os.path.join(os.path.dirname(__file__), '..')) # noqa
15
sys.path.insert(0, pkg_root) # noqa
@@ -210,6 +211,7 @@ def test_local_wdl(self):
210
211
self.assertTrue(self.check_for_file(outfile_path), 'Output file was not found: ' + str(outfile_path))
212
213
214
+@pytest.mark.skipif(not os.environ.get("ARVADOS_API_TOKEN"), "Arvados not configured")
215
class ArvadosTest(IntegrationTest):
216
"""Test using arvados-cwl-runner."""
217
0 commit comments