Skip to content

Commit 1b571ea

Browse files
committed
Manually merged the the part of PR134 which involves the github hooks, which
are only part of the specific github branches. Credits for the original unit test framework and this unification work to move all tests into containers goes out to Alex Burke (albu-diku)
1 parent b69b78c commit 1b571ea

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
make dependencies
3636
- name: Run tests
3737
run: |
38-
make test
38+
make unittest
3939
4040
python3-rocky9:
4141
runs-on: ubuntu-22.04
@@ -52,7 +52,7 @@ jobs:
5252
make dependencies
5353
- name: Run tests
5454
run: |
55-
make test
55+
make unittest
5656
5757
python3-rocky8:
5858
runs-on: ubuntu-20.04
@@ -69,7 +69,7 @@ jobs:
6969
make dependencies
7070
- name: Run tests
7171
run: |
72-
make test
72+
make unittest
7373
7474
python2-latest:
7575
runs-on: ubuntu-latest
@@ -82,8 +82,7 @@ jobs:
8282
uses: actions/checkout@v4
8383
- name: Setup environment
8484
run: |
85-
pip install --no-cache-dir -r requirements.txt -r local-requirements.txt
85+
make PYTHON_BIN=python PY=2 dependencies
8686
- name: Run tests
8787
run: |
88-
PYTHON_BIN=python ./envhelp/makeconfig test --python2
89-
MIG_ENV='local' python -m unittest discover -s tests/
88+
make PYTHON_BIN=python PY=2 unittest

0 commit comments

Comments
 (0)