From f3f01294aad034e3acfdc0ae862582e81e3c4bcd Mon Sep 17 00:00:00 2001 From: Jinzhe Zeng Date: Tue, 7 Jan 2025 15:57:43 +0800 Subject: [PATCH] fix(CI): remove `CI` env var to fix the CI xref: https://github.com/materialsproject/pymatgen/issues/4243#issuecomment-2573310051 Signed-off-by: Jinzhe Zeng --- .github/workflows/test.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5800408c2..2913d6f48 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,6 +22,9 @@ jobs: run: uv pip install --system -e .[test] - name: Test run: coverage run --source=./dpgen -m unittest -v && coverage report + env: + # https://github.com/materialsproject/pymatgen/issues/4243#issuecomment-2573310051 + CI: "" - uses: codecov/codecov-action@v5 env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}