File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2828
2929 - name : run tests
3030 run : |
31- for script in ../scripts/test[0 -9]*; do
31+ for script in ../scripts/test00[1 -9]*; do
3232 ./docker_container_driver.sh $script
3333 done
Original file line number Diff line number Diff line change 1+ name : run-local-suite
2+
3+ on : [push, pull_request]
4+
5+ jobs :
6+ tests :
7+ timeout-minutes : 20
8+
9+ name : Python ${{ matrix.python }}, iRODS ${{ matrix.irods_server }}
10+ runs-on : ubuntu-latest
11+ defaults :
12+ run :
13+ working-directory : ./irods/test/harness
14+ strategy :
15+ matrix :
16+ # #python: ['3.9','3.13']
17+ # irods_server: ['4.3.4']
18+ # #irods_server: ['4.3.4','5.0.1']
19+ python : ['3.9']
20+ irods_server : ['5.0.1']
21+
22+ steps :
23+ - name : Checkout
24+ uses : actions/checkout@v4
25+
26+ - name : Build images
27+ run : ./create_docker_images.sh "${{ matrix.irods_server }}" "${{ matrix.python }}"
28+
29+ - name : run tests
30+ run : |
31+ for script in ../scripts/test000*; do
32+ ./docker_container_driver.sh $script
33+ done
You can’t perform that action at this time.
0 commit comments