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.
This commit is contained in:
Ogi Moore 2021-06-06 10:57:02 -07:00
parent f225724f26
commit d974544053

View File

@ -101,8 +101,9 @@ jobs:
- name: Run Tests - name: Run Tests
run: | run: |
mkdir $SCREENSHOT_DIR mkdir $SCREENSHOT_DIR
pytest tests examples -v \ pytest tests -v \
--junitxml pytest.xml \ --junitxml pytest.xml
pytest examples -v
shell: bash shell: bash
- name: Upload Screenshots - name: Upload Screenshots
uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v2