From 225c91e78e585d15b02f45684fcd88aacf8f64f6 Mon Sep 17 00:00:00 2001 From: pgleeson Date: Thu, 22 Jun 2023 19:00:44 +0100 Subject: [PATCH] Ensure example run on more platforms --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 66c42f6..a56696f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,9 +41,10 @@ jobs: pytest -vs - name: Run examples - if: ${{ matrix.python-version != '3.7' && matrix.runs-on == 'macos-latest' }} # issue with _bz2 module... + if: ${{ matrix.python-version != '3.7' || matrix.runs-on != 'macos-latest' }} # issue with _bz2 module... run: | - cd ./neuroml/examples && python run_all.py + cd neuroml/examples + python run_all.py - name: Final version info run: |