From 21d2d8f0acc0d729b70dc3c4aa9d78939b89b20c Mon Sep 17 00:00:00 2001 From: Kevin Anderson Date: Tue, 23 Sep 2025 15:12:22 -0400 Subject: [PATCH] fix quote characters --- .github/workflows/pytest-remote-data.yml | 2 +- .github/workflows/pytest.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pytest-remote-data.yml b/.github/workflows/pytest-remote-data.yml index 87b4346209..31145bd091 100644 --- a/.github/workflows/pytest-remote-data.yml +++ b/.github/workflows/pytest-remote-data.yml @@ -103,7 +103,7 @@ jobs: run: pytest tests/iotools --cov=./ --cov-report=xml --remote-data - name: Upload coverage to Codecov - if: matrix.python-version == "3.10" && matrix.suffix == '' + if: matrix.python-version == '3.10' && matrix.suffix == '' uses: codecov/codecov-action@v4 with: fail_ci_if_error: true diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index b4715adf93..c71cf7ed89 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -83,7 +83,7 @@ jobs: pytest tests --cov=./ --cov-report=xml --ignore=tests/iotools - name: Upload coverage to Codecov - if: matrix.python-version == "3.10" && matrix.suffix == '' && matrix.os == 'ubuntu-latest' && matrix.environment-type == 'conda' + if: matrix.python-version == '3.10' && matrix.suffix == '' && matrix.os == 'ubuntu-latest' && matrix.environment-type == 'conda' uses: codecov/codecov-action@v4 with: fail_ci_if_error: true