Skip to content

Commit 6db9279

Browse files
committed
partition test000 from test001-9
1 parent 0a20895 commit 6db9279

2 files changed

Lines changed: 34 additions & 1 deletion

File tree

.github/workflows/run-bats-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ jobs:
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
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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

0 commit comments

Comments
 (0)