Skip to content

Commit

Permalink
Debugging run_tests github action (cont)
Browse files Browse the repository at this point in the history
  • Loading branch information
caleb-sitton-inl committed Jul 11, 2024
1 parent 7a74d56 commit 7b1d790
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,10 @@ jobs:
uses: actions/checkout@v3
- run: pwd
- run: WD=`(cd ../../.. && pwd)` && export RAVEN_LIBS_NAME="raven_libs_"`basename $WD` && ./initalize_tests.sh
- run: source raven/scripts/establish_conda_env.sh --load && ./check_py_coverage.sh
- run: COV_EX=`which coverage` && COV_PCT=`$COV_EX report --format=total` && echo "::notice title=Coverage Summary::Code coverage for this repository is now $COV_PCT%. See 'coverage_results' in Artifacts for details."
- run: >
source raven/scripts/establish_conda_env.sh --load &&
./check_py_coverage.sh && COV_PCT=`coverage report --format=total` &&
echo "::notice title=Coverage Summary::Code coverage for this repository is now $COV_PCT%. See 'coverage_results' in Artifacts for details."
- name: Archive tests results
uses: actions/upload-artifact@v4
if: always()
Expand Down

0 comments on commit 7b1d790

Please sign in to comment.