-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PyPy3 test fixes #1904
PyPy3 test fixes #1904
Conversation
Fix test_syntax to compare strings via "==" rather than "is", in order to fix test failure on PyPy3.
4b8d607
to
8e3a0be
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## master #1904 +/- ##
==========================================
- Coverage 99.82% 99.80% -0.03%
==========================================
Files 71 71
Lines 6943 7032 +89
==========================================
+ Hits 6931 7018 +87
- Misses 12 14 +2
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Mark the test_inspect tests failing on PyPy3 due to different output to be skipped appropriately.
6208b03
to
f15dc3e
Compare
Ping. |
Thanks. |
11.2.0 Added Add support for US spelling of "gray" in ANSI color names Textualize/rich#1890 Added rich.diagnose.report to expose environment debugging logic as function Textualize/rich#1917 Added classmethod Progress.get_default_columns() to get the default list of progress bar columns Textualize/rich#1894 Fixed Fixed performance issue in measuring text Fixed test failures on PyPy3 Textualize/rich#1904
Type of changes
Checklist
Description
==
rather thanis
, in order to fix test failure on PyPy3.