diff --git a/.github/workflows/integration_tests.yaml b/.github/workflows/integration_tests.yaml index 6f1844d..1fb1eb5 100644 --- a/.github/workflows/integration_tests.yaml +++ b/.github/workflows/integration_tests.yaml @@ -22,10 +22,11 @@ on: - main paths: - .pre-commit-config.yaml - - .github/workflows/static_code_checks.yml + - .github/workflows/static_code_checks.yaml - .github/workflows/docs_build.yml - .github/workflows/docs_deploy.yml - - .github/workflows/integration_tests.yml + - .github/workflows/unit_tests.yaml + - .github/workflows/integration_tests.yaml - '**.py' - '**.ipynb' - poetry.lock @@ -61,14 +62,13 @@ jobs: poetry install --with docs,test coverage run -m pytest florist/tests/integration && coverage xml && coverage report -m - name: Upload python coverage to Codecov - uses: Wandalen/wretry.action@v3.5.0 + uses: Wandalen/wretry.action@v3.7.0 with: - action: codecov/codecov-action@v4.0.1 + action: codecov/codecov-action@v4.6.0 with: | token: ${{ secrets.CODECOV_TOKEN }} name: codecov-umbrella fail_ci_if_error: true - verbose: true attempt_limit: 5 attempt_delay: 30000 @@ -80,7 +80,7 @@ jobs: # yarn # yarn integration-test # - name: Upload js coverage to Codecov -# uses: Wandalen/wretry.action@v3.5.0 +# uses: Wandalen/wretry.action@v3.7.0 # with: # action: codecov/codecov-action@v4.0.1 # with: | diff --git a/.github/workflows/unit_tests.yaml b/.github/workflows/unit_tests.yaml index ad1b3c6..79ecb3c 100644 --- a/.github/workflows/unit_tests.yaml +++ b/.github/workflows/unit_tests.yaml @@ -56,14 +56,13 @@ jobs: poetry install --with docs,test coverage run -m pytest florist/tests/unit && coverage xml && coverage report -m - name: Upload python coverage to Codecov - uses: Wandalen/wretry.action@v3.5.0 + uses: Wandalen/wretry.action@v3.7.0 with: - action: codecov/codecov-action@v4.0.1 + action: codecov/codecov-action@v4.6.0 with: | token: ${{ secrets.CODECOV_TOKEN }} name: codecov-umbrella fail_ci_if_error: true - verbose: true attempt_limit: 5 attempt_delay: 30000 - name: Setup yarn @@ -73,7 +72,7 @@ jobs: yarn yarn unit-test - name: Upload js coverage to Codecov - uses: Wandalen/wretry.action@v3.5.0 + uses: Wandalen/wretry.action@v3.7.0 with: action: codecov/codecov-action@v4.0.1 with: |