From cbda69691d879d9c605d924571a68b4acb0080cd Mon Sep 17 00:00:00 2001 From: chrisjonesBSU Date: Thu, 28 Mar 2024 09:47:00 -0600 Subject: [PATCH] use nbmake in separate line --- .github/workflows/pytest.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index cea0f9bc..6923d5f5 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -45,7 +45,11 @@ jobs: - name: Run pytest with coverage report shell: bash -l {0} - run: python -m pytest -rs -v --cov=./ --cov-report=xml --nbmake tutorials/ + run: python -m pytest -rs -v --cov=./ --cov-report=xml + + - name: Run pytest on tutorials + shell: bash -l {0} + run: python -m pytest -rs -v --nbmake tutorials/ - name: Upload coverage to Codecov uses: codecov/codecov-action@v3