Skip to content

Commit

Permalink
fixing paths
Browse files Browse the repository at this point in the history
  • Loading branch information
dana-yaish committed Jul 26, 2023
1 parent 111adc3 commit cce1843
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@ jobs:
- name: Install dependencies
run: pip install -r requirements.txt
- name: give wrapper permission
run: chmod +x app/codecov_wrapper.sh
run: chmod +x app/projectA/codecov_wrapper.sh
- name: run tests by bazel and generate coverage
run: |
python -m pip install --upgrade pip
pip install virtualenv
virtualenv venv
source venv/bin/activate
pip install codecov-cli
bazel coverage --run_under //app:codecov_wrapper.sh \
bazel coverage --run_under //app/projectA:codecov_wrapper.sh \
--test_output=all \
--action_env=GIT_DIR=${PWD}/$(git rev-parse --git-dir) \
--action_env=CODECOV_TOKEN=${{ secrets.CODECOV_TOKEN }} \
--combined_report=lcov //app:test_calculator
--combined_report=lcov //app/...

0 comments on commit cce1843

Please sign in to comment.