diff --git a/.github/workflows/actions.yaml b/.github/workflows/actions.yaml index 55c0f7bb..79f93f65 100644 --- a/.github/workflows/actions.yaml +++ b/.github/workflows/actions.yaml @@ -28,7 +28,6 @@ jobs: - name: Unit Test run: pytest -v --cov=aiaccel --cov-branch --cov-report=term-missing tests/unit --junit-xml pytest-${{ matrix.os }}-${{ matrix.python-version }}.xml - continue-on-error: true - name: Upload Test Results if: always() @@ -39,11 +38,9 @@ jobs: - name: Pycodestyle Test run: pytest -v --pycodestyle aiaccel examples - continue-on-error: true - name: Flack8 Test run: pytest -v --flake8 aiaccel examples - continue-on-error: true - name: Optimizer Algorithm Test run: | @@ -52,7 +49,6 @@ jobs: pytest -v tests/integration/sphere/test_sphere_sobol.py pytest -v tests/integration/sphere/test_sphere_tpe.py pytest -v tests/integration/sphere/test_sphere_nelder_mead.py - continue-on-error: true - name: Resume Test run: | @@ -61,7 +57,6 @@ jobs: pytest -v tests/resumption/sphere/test_sphere_sobol_resumption.py pytest -v tests/resumption/sphere/test_sphere_tpe_resumption.py pytest -v tests/resumption/sphere/test_sphere_nelder_mead_resumption.py - continue-on-error: true publish-test-results: name: "Publish Tests Results" @@ -73,11 +68,6 @@ jobs: # only needed unless run with comment_mode: off pull-requests: write - # only needed for private repository - #contents: read - - # only needed for private repository - #issues: read if: always() steps: