Run tests - f7cee6f45a7f396c179c5fe2ec7c04acb6226647 #125
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run tests | |
run-name: Run tests - ${{ github.sha }} | |
on: push | |
env: | |
OPENBLAS_NUM_THREADS: 1 | |
jobs: | |
run_test: | |
strategy: | |
matrix: | |
# NOTE: Python 3.12 is not supported yet | |
config: | |
[ | |
{os: ubuntu-20.04, py: '3.8'}, | |
{os: ubuntu-20.04, py: '3.9'}, | |
{os: ubuntu-20.04, py: '3.10'}, | |
{os: ubuntu-20.04, py: '3.11'}, | |
{os: ubuntu-latest, py: '3.8'}, | |
{os: ubuntu-latest, py: '3.9'}, | |
{os: ubuntu-latest, py: '3.10'}, | |
{os: ubuntu-latest, py: '3.11'} | |
# {os: ubuntu-20.04, py: '3.12'}, | |
# {os: macos-latest, py: '3.8'}, | |
# {os: macos-latest, py: '3.9'}, | |
# {os: macos-latest, py: '3.10'}, | |
# {os: macos-latest, py: '3.11'}, | |
# {os: macos-latest, py: '3.12'}, | |
# {os: macos-14, py: '3.10'}, | |
# {os: macos-14, py: '3.11'}, | |
# {os: macos-14, py: '3.12'} | |
] | |
name: Python ${{ matrix.config.py }} on ${{ matrix.config.os }} | |
runs-on: ${{ matrix.config.os }} | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Download data | |
working-directory: tests | |
run: | | |
curl -L -O https://github.com/daducci/COMMIT/wiki/files/demo01_data.zip | |
curl -L -O https://github.com/daducci/COMMIT/wiki/files/demo01_fibers.tck | |
7z x demo01_data.zip | |
mv demo01_fibers.tck demo_data | |
mv demo01_data/* demo_data | |
- name: Set up Python ${{ matrix.config.py }} | |
uses: actions/[email protected] | |
with: | |
python-version: ${{ matrix.config.py }} | |
- name: Install dmri-commit | |
run: pip install . --no-cache-dir | |
- name: Run test | |
id: run_test | |
working-directory: tests | |
run: | | |
echo "Run tests" | |
python test_demo.py | |
continue-on-error: true | |
- name: Check on failures | |
if: steps.run_test.outcome != 'success' | |
run: | | |
echo "Test failed" | |
exit 1 |