python / typing_extensions

Backported and experimental type hints for Python
Other
439 stars 106 forks source link

Third-party tests failed on Thu Sep 05 2024 #453

Closed github-actions[bot] closed 1 month ago

github-actions[bot] commented 2 months ago

Runs listed here: https://github.com/python/typing_extensions/actions/workflows/third_party.yml

srittau commented 2 months ago

The problem here seems to be that typeguard checks the end of the output of something to be typeguard.TypeCheckError: argument "x" (str) is not an instance of int\n, but the actual output has ANSI color codes: typeguard.TypeCheckError\x1b[0m: \x1b[35margument "x" (str) is not an instance of int\x1b[0m\n.

I'm not familiar enough with the typeguard tests here to fix this. typeguard's last commit was four months ago, and ours last week, so I'm not sure what has changed. A new release of something (pypy, pytype?) that enables colors by default?

AlexWaygood commented 1 month ago

We fixed this by not running pypy tests for typeguard anymore