Skip to content

Commit

Permalink
Fix check types step
Browse files Browse the repository at this point in the history
  • Loading branch information
vemel committed Nov 26, 2024
1 parent 2e412a2 commit f751b7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/on_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Check types in test.py
run: |
uv build --wheel
OUTPUT=`uvx --python=3.8 --with dist/*.whl mypy test.py`
OUTPUT=`uvx --python=3.8 --with dist/*.whl mypy test.py || true`
echo $OUTPUT
if [[ ${OUTPUT} != *"Found 1 error"* ]];then
echo "Stubs test failed: $TEST"
Expand Down

0 comments on commit f751b7c

Please sign in to comment.