From 1cbaa628e4759a78167e9838ee326f081f327bc3 Mon Sep 17 00:00:00 2001 From: Valeriu Predoi Date: Mon, 1 Mar 2021 11:44:52 +0000 Subject: [PATCH] reverted to original setup (#1025) --- .github/workflows/action-test.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/action-test.yml b/.github/workflows/action-test.yml index 0d8c419069..cba7f815f6 100644 --- a/.github/workflows/action-test.yml +++ b/.github/workflows/action-test.yml @@ -28,8 +28,7 @@ on: # branches: # - master schedule: - # - cron: '0 0 * * *' # nightly - - cron: '0 */3 * * *' # every 3 hours + - cron: '0 0 * * *' # nightly jobs: linux: @@ -57,7 +56,7 @@ jobs: - shell: bash -l {0} run: pip install -e .[develop] 2>&1 | tee test_linux_artifacts_python_${{ matrix.python-version }}/install.txt - shell: bash -l {0} - run: pytest -n 1 -m "not installation" 2>&1 | tee test_linux_artifacts_python_${{ matrix.python-version }}/test_report.txt + run: pytest -n 2 -m "not installation" 2>&1 | tee test_linux_artifacts_python_${{ matrix.python-version }}/test_report.txt - name: Upload artifacts if: ${{ always() }} # upload artifacts even if fail uses: actions/upload-artifact@v2 @@ -90,7 +89,7 @@ jobs: - shell: bash -l {0} run: pip install -e .[develop] --use-feature=2020-resolver 2>&1 | tee test_osx_artifacts_python_${{ matrix.python-version }}/install.txt - shell: bash -l {0} - run: pytest -n 1 -m "not installation" 2>&1 | tee test_osx_artifacts_python_${{ matrix.python-version }}/test_report.txt + run: pytest -n 2 -m "not installation" 2>&1 | tee test_osx_artifacts_python_${{ matrix.python-version }}/test_report.txt - name: Upload artifacts if: ${{ always() }} # upload artifacts even if fail uses: actions/upload-artifact@v2