File tree 1 file changed +24
-5
lines changed 1 file changed +24
-5
lines changed Original file line number Diff line number Diff line change @@ -12,14 +12,33 @@ jobs:
12
12
runs-on : ubuntu-latest
13
13
strategy :
14
14
matrix :
15
- python-version : [3.7, 3.8, 3.9, "3.10"]
15
+ test-name :
16
+ - test_boutiques
17
+ - test_dockertask
18
+ - test_graph
19
+ - test_helpers
20
+ - test_helpers_file
21
+ - test_helpers_state
22
+ - test_nipype1_convert
23
+ - test_node_task
24
+ - test_numpy_examples
25
+ - test_profiles
26
+ - test_shelltask
27
+ - test_shelltask_inputspec
28
+ - test_singularity
29
+ - test_specs
30
+ - test_state
31
+ - test_submitter
32
+ - test_task
33
+ - test_tasks_files
34
+ - test_workflow
16
35
fail-fast : false
17
36
18
37
steps :
19
- - name : Set up Python ${{ matrix.python-version }}
38
+ - name : Set up Python 3.9
20
39
uses : actions/setup-python@v2
21
40
with :
22
- python-version : ${{ matrix.python-version }}
41
+ python-version : 3.9
23
42
24
43
- name : Install dependencies
25
44
run : |
36
55
37
56
- name : Run tests
38
57
run : |
39
- pytest -v --dask pydra/engine --cov pydra --cov-config .coveragerc --cov-report xml:cov.xml
58
+ pytest -v --dask pydra/engine/tests/${{ matrix.test-name }}.py --cov pydra --cov-config .coveragerc --cov-report xml:cov.xml
40
59
41
60
- name : Upload to codecov
42
- run : codecov -f cov.xml -F unittests -e GITHUB_WORKFLOW
61
+ run : codecov -f cov.xml -F unittests -e GITHUB_WORKFLOW
You can’t perform that action at this time.
0 commit comments