Mercurial > repos > shellac > guppy_basecaller
comparison env/lib/python3.7/site-packages/cwltool/tests/test_check.py @ 5:9b1c78e6ba9c draft default tip
"planemo upload commit 6c0a8142489327ece472c84e558c47da711a9142"
author | shellac |
---|---|
date | Mon, 01 Jun 2020 08:59:25 -0400 |
parents | 79f47841a781 |
children |
comparison
equal
deleted
inserted
replaced
4:79f47841a781 | 5:9b1c78e6ba9c |
---|---|
1 import pytest | |
2 | |
3 from cwltool.main import main | |
4 | |
5 from .util import get_data, needs_docker | |
6 | |
7 | |
8 bad_flows = [ | |
9 'tests/wf/badout1.cwl', | |
10 'tests/wf/badout2.cwl', | |
11 'tests/wf/badout3.cwl' | |
12 ] | |
13 | |
14 @needs_docker | |
15 @pytest.mark.parametrize('bad_flow', bad_flows) | |
16 def test_output_checking(bad_flow): | |
17 assert main([get_data(bad_flow)]) == 1 |