Skip to content

Commit 99b16e7

Browse files
authored
fix(CI): remove CI env var to fix the CI (#1704)
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 <jinzhe.zeng@rutgers.edu>
1 parent 255f268 commit 99b16e7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@ jobs:
2121
- name: Install dependencies
2222
run: uv pip install --system -e .[test]
2323
- name: Test
24-
run: coverage run --source=./dpgen -m unittest -v && coverage report
24+
run: |
25+
# https://github.com/materialsproject/pymatgen/issues/4243#issuecomment-2573310051
26+
unset CI
27+
coverage run --source=./dpgen -m unittest -v && coverage report
2528
- uses: codecov/codecov-action@v5
2629
env:
2730
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)