Skip to content

Commit

Permalink
Merge pull request CEMeNT-PSAAP#134 from ilhamv/main
Browse files Browse the repository at this point in the history
update workflow
  • Loading branch information
ilhamv authored Nov 30, 2023
2 parents 8cd470c + 92c33df commit 26b28eb
Showing 1 changed file with 17 additions and 6 deletions.
23 changes: 17 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,27 @@ jobs:
pip install numpy numba h5py matplotlib scipy pytest colorama mpi4py
pip list
pip install -e .
- name: Patch numba
- name: Patch Numba
run : |
bash .github/workflows/patch.sh
- name: Run Unit Tests
- name: Unit Test
run: |
pytest
- name: Regression Test - Python
run: |
cd test/regression
python run.py
- name: Regression Test - MPI
run: |
cd test/regression
python run.py --mpiexec=4 --skip=iqmc*
python run.py --mode=numba --skip=iqmc*
python run.py --mpiexec=4 --mode=numba --skip=iqmc*
# TODO: Run performance test
# TODO: Run GPU test
- name: Regression Test - Numba
run: |
cd test/regression
python run.py --mode=numba
- name: Regression Test - Numba and MPI
run: |
cd test/regression
python run.py --mode=numba --mpiexec=4 --skip=iqmc*
# TODO: Performance test
# TODO: GPU test

0 comments on commit 26b28eb

Please sign in to comment.