Skip to content

Commit

Permalink
ci: Run docstring tests again (#2576)
Browse files Browse the repository at this point in the history
This comparison expression has always been broken.

However in #2334 it changed from `!= 'true'` to `== 'false'`.
So the tests went from always running to never running.
  • Loading branch information
rohansingh authored Nov 26, 2024
1 parent 5607f73 commit 6dcd0c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
run: pytest -v

- name: Run docstring tests
if: github.event.pull_request.head.repo.fork == 'false'
if: github.event.pull_request.head.repo.fork == false
env:
MODAL_ENVIRONMENT: client-doc-tests
MODAL_TOKEN_ID: ${{ secrets.MODAL_TOKEN_ID }}
Expand Down Expand Up @@ -243,4 +243,4 @@ jobs:
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: twine upload dist/* --non-interactive
run: twine upload dist/* --non-interactive

0 comments on commit 6dcd0c7

Please sign in to comment.