Skip to content

Commit

Permalink
Run Nox on GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
JorisVincent committed Mar 13, 2023
1 parent 87e4254 commit 9c94b91
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/test.yml
Expand Up @@ -18,6 +18,11 @@ jobs:
python-version: ${{ matrix.python_version }}
architecture: x64

- run: pip install -r requirements.txt
- run: pip install .
- run: pytest
- name: Install nox
run: pip install nox
- name: Install (testing) requirements
run: pip install -r requirements.txt
- name: Install stimupy to be tested
run: pip install .
- name: Run tests for $ {{ matrix.python_version }} through nox
run: nox --non-interactive --error-on-missing-interpreter --session "tests-${{ matrix.python_version }}" -- --full-trace

0 comments on commit 9c94b91

Please sign in to comment.