You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add pinned dev version of ast_serialize to CI (#20836)
This PR makes parallel tests run with native parser (I temporarily skip parallel tests on Windows). This will:
* Prevent accidental regressions in native parser
* Allow me to start working on making parallel checking native-parser-only.
In parallel we can gradually re-enable remaining ~50 skipped tests. (FWIW I don't think there is anything essential
there, mostly different error messages, and some rare edge cases.)
# type: ignore[whatever] # E: type ignore with error code is not supported for modules; use `# mypy: disable-error-code="whatever"` [syntax]
1070
+
# type: ignore[whatever] # E: Type ignore with error code is not supported for modules; use `# mypy: disable-error-code="whatever"` [syntax]
1071
1071
1 + "asdf"
1072
1072
1073
1073
[case testRecommendErrorCode2]
1074
-
# type: ignore[whatever, other] # E: type ignore with error code is not supported for modules; use `# mypy: disable-error-code="whatever, other"` [syntax]
1074
+
# type: ignore[whatever, other] # E: Type ignore with error code is not supported for modules; use `# mypy: disable-error-code="whatever, other"` [syntax]
0 commit comments