Skip to content

Commit

Permalink
fix(CI): remove CI env var to fix the CI (#1704)
Browse files Browse the repository at this point in the history
xref:
materialsproject/pymatgen#4243 (comment)

<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit

- **Chores**
- Updated GitHub Actions workflow configuration with a minor environment
variable adjustment to support testing processes.
<!-- end of auto-generated comment: release notes by coderabbit.ai -->

---------

Signed-off-by: Jinzhe Zeng <[email protected]>
  • Loading branch information
njzjz authored Jan 7, 2025
1 parent 255f268 commit 99b16e7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ jobs:
- name: Install dependencies
run: uv pip install --system -e .[test]
- name: Test
run: coverage run --source=./dpgen -m unittest -v && coverage report
run: |
# https://github.com/materialsproject/pymatgen/issues/4243#issuecomment-2573310051
unset CI
coverage run --source=./dpgen -m unittest -v && coverage report
- uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
Expand Down

0 comments on commit 99b16e7

Please sign in to comment.