Skip to content

Commit

Permalink
Don't make API testing a strict pre-requisite for release
Browse files Browse the repository at this point in the history
  • Loading branch information
cpsievert committed Dec 11, 2024
1 parent f040b4c commit b47b534
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,10 @@ jobs:
- name: 📦 Install the project
run: uv sync --python ${{ env.PYTHON_VERSION }} --all-extras

- name: 🧪 Check tests
run: make check-tests
# Tests require API keys, and can be flaky at times due to quota limits,
# we skip them for release
#- name: 🧪 Check tests
# run: make check-tests

- name: 📝 Check types
run: make check-types
Expand Down

0 comments on commit b47b534

Please sign in to comment.