From d9745440535d3912695a4064cbc883dbde7bec7f Mon Sep 17 00:00:00 2001 From: Ogi Moore Date: Sun, 6 Jun 2021 10:57:02 -0700 Subject: [PATCH] Split up Execution of examples and tests in CI There seems to be some unintentional side effect when running examples and the same time. This change breaks up the execution into two separate calls to pytest in an attempt to bypass whatever issue is being created. --- .github/workflows/main.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 51db3c6b..c242102e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -101,8 +101,9 @@ jobs: - name: Run Tests run: | mkdir $SCREENSHOT_DIR - pytest tests examples -v \ - --junitxml pytest.xml \ + pytest tests -v \ + --junitxml pytest.xml + pytest examples -v shell: bash - name: Upload Screenshots uses: actions/upload-artifact@v2