diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index c1c4ac08e..decf8bd48 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -30,11 +30,13 @@ jobs: pip install -e . --user pip install pytest-cov --user pip install pytest-pycodestyle --user + - name: Test shell: bash -l {0} working-directory: ./ run: | pytest -m 'not requires_pufcsv and not pre_release and not local' --cov=./ --cov-report=xml + - name: Upload coverage to Codecov if: matrix.os == 'ubuntu-latest' && contains(github.repository, 'PSLmodels/Tax-Calculator') uses: codecov/codecov-action@v4 @@ -43,5 +45,6 @@ jobs: file: ./coverage.xml flags: unittests name: codecov-umbrella - fail_ci_if_error: true + #fail_ci_if_error: true + fail_ci_if_error: false verbose: true