Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tutorial tests #244

Merged
merged 14 commits into from
Apr 25, 2022
10 changes: 10 additions & 0 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ jobs:

steps:
- uses: actions/checkout@v2
with:
lfs: true

- name: Set up Python 3.9
uses: actions/setup-python@v2
Expand Down Expand Up @@ -52,6 +54,8 @@ jobs:

steps:
- uses: actions/checkout@v2
with:
lfs: true

- name: Set up Python 3.9
uses: actions/setup-python@v2
Expand Down Expand Up @@ -94,6 +98,8 @@ jobs:

steps:
- uses: actions/checkout@v2
with:
lfs: true

- name: Set up Python 3.9
uses: actions/setup-python@v2
Expand Down Expand Up @@ -123,11 +129,15 @@ jobs:
- name: Run unit tests
if: runner.os == 'Linux' || runner.os == 'macOS'
run: |
git lfs fetch
git lfs pull
source $VENV
python3 -m pip install ipykernel
pytest

- name: Run unit tests
if: runner.os == 'Windows'
run: |
.venv\Scripts\activate.ps1
python3 -m pip install ipykernel
pytest
Loading