Skip to content

Commit 3e8bd1f

Browse files
authored
Fix quote characters in pytest GH Actions (#2552)
1 parent 41d6022 commit 3e8bd1f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/pytest-remote-data.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
run: pytest tests/iotools --cov=./ --cov-report=xml --remote-data
104104

105105
- name: Upload coverage to Codecov
106-
if: matrix.python-version == "3.10" && matrix.suffix == ''
106+
if: matrix.python-version == '3.10' && matrix.suffix == ''
107107
uses: codecov/codecov-action@v4
108108
with:
109109
fail_ci_if_error: true

.github/workflows/pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
pytest tests --cov=./ --cov-report=xml --ignore=tests/iotools
8484
8585
- name: Upload coverage to Codecov
86-
if: matrix.python-version == "3.10" && matrix.suffix == '' && matrix.os == 'ubuntu-latest' && matrix.environment-type == 'conda'
86+
if: matrix.python-version == '3.10' && matrix.suffix == '' && matrix.os == 'ubuntu-latest' && matrix.environment-type == 'conda'
8787
uses: codecov/codecov-action@v4
8888
with:
8989
fail_ci_if_error: true

0 commit comments

Comments
 (0)