@@ -57,13 +57,13 @@ echo "::group::Mypy"
57
57
rm -f mypy_annotate.dat
58
58
# Pipefail makes these pipelines fail if mypy does, even if mypy_annotate.py succeeds.
59
59
set -o pipefail
60
- mypy --show-error-end --python-version=3.13 --cobertura-xml-report=mypy-cov-linux-py-3.13 --platform linux | python ./src/trio/_tools/mypy_annotate.py --dumpfile mypy_annotate.dat --platform Linux \
61
- || { echo " * Mypy (Linux, Python 3.13) found type errors." >> " $GITHUB_STEP_SUMMARY " ; MYPY=1; }
62
- # Darwin tests FreeBSD too
63
- mypy --show-error-end --python-version=3.13 --cobertura-xml-report=mypy-cov-macos-py-3.13 --platform darwin | python ./src/trio/_tools/mypy_annotate.py --dumpfile mypy_annotate.dat --platform Mac \
64
- || { echo " * Mypy (Mac, Python 3.13) found type errors." >> " $GITHUB_STEP_SUMMARY " ; MYPY=1; }
65
- mypy --show-error-end --python-version=3.13 --cobertura-xml-report=mypy-cov-windows-py-3.13 --platform win32 | python ./src/trio/_tools/mypy_annotate.py --dumpfile mypy_annotate.dat --platform Windows \
66
- || { echo " * Mypy (Windows, Python 3.13) found type errors." >> " $GITHUB_STEP_SUMMARY " ; MYPY=1; }
60
+ # mypy --show-error-end --python-version=3.13 --cobertura-xml-report=mypy-cov-linux-py-3.13 --platform linux | python ./src/trio/_tools/mypy_annotate.py --dumpfile mypy_annotate.dat --platform Linux \
61
+ # || { echo "* Mypy (Linux, Python 3.13) found type errors." >> "$GITHUB_STEP_SUMMARY"; MYPY=1; }
62
+ # # Darwin tests FreeBSD too
63
+ # mypy --show-error-end --python-version=3.13 --cobertura-xml-report=mypy-cov-macos-py-3.13 --platform darwin | python ./src/trio/_tools/mypy_annotate.py --dumpfile mypy_annotate.dat --platform Mac \
64
+ # || { echo "* Mypy (Mac, Python 3.13) found type errors." >> "$GITHUB_STEP_SUMMARY"; MYPY=1; }
65
+ # mypy --show-error-end --python-version=3.13 --cobertura-xml-report=mypy-cov-windows-py-3.13 --platform win32 | python ./src/trio/_tools/mypy_annotate.py --dumpfile mypy_annotate.dat --platform Windows \
66
+ # || { echo "* Mypy (Windows, Python 3.13) found type errors." >> "$GITHUB_STEP_SUMMARY"; MYPY=1; }
67
67
mypy --show-error-end --python-version=3.9 --cobertura-xml-report=mypy-cov-linux-py-3.9 --platform linux | python ./src/trio/_tools/mypy_annotate.py --dumpfile mypy_annotate.dat --platform Linux \
68
68
|| { echo " * Mypy (Linux, Python 3.9) found type errors." >> " $GITHUB_STEP_SUMMARY " ; MYPY=1; }
69
69
# Darwin tests FreeBSD too
0 commit comments