Skip to content

Commit dff88d1

Browse files
authored
Merge pull request #165 from open-atmos/slayoo-patch-19
add GITHUB_TOKEN env var when running test_todos_annotated
2 parents 55d1854 + 303e10b commit dff88d1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/tests+artifacts+pypi.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ jobs:
2424
fetch-depth: 0 # https://github.com/pypa/setuptools_scm/issues/480
2525
- run: pip install -r test-time-requirements.txt
2626
- run: DEBUG=0 VERBOSE=1 pip install --verbose -e .
27-
- run: pytest -v -s -We -p no:unraisableexception tests/test_todos_annotated.py
27+
- env:
28+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
29+
run: pytest -v -s -We -p no:unraisableexception tests/test_todos_annotated.py
2830

2931
build:
3032
needs: [todos_annotated]

0 commit comments

Comments
 (0)