Last active
July 9, 2021 00:04
-
-
Save gerner/8351bd8abd709ef892808f041584fae2 to your computer and use it in GitHub Desktop.
Testing features in GFM
Codecov Report
Merging #2322 (52a8932) into main (611a30f) will decrease coverage by
0.11%
. The diff coverage isn/a
.
❗ Current head 52a8932 differs from pull request most recent head b3ab30f. Consider uploading reports for the commit b3ab30f to get more accurate results
@@ Coverage Diff @@
## main #2322 +/- ##
==========================================
- Coverage 92.75% 92.63% -0.12%
==========================================
Files 145 142 -3
Lines 5216 5091 -125
Branches 1068 1047 -21
==========================================
- Hits 4838 4716 -122
+ Misses 378 375 -3
this is inline code
in text
this is bold in text
this is italics in text
this is strike through in text
this is bold in text
this is emphasis in text
this is embeddedinline code
in text
thisis-embedded strikethroughin text
this_is embedded single underscore_in text
this__is embedded double underscore__in text
thisis embedded italicsin text
thisis embedded boldin text
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
ops = method_ops.get(name, []) | |
call_c_ops_candidates = c_method_call_ops.get(name, []) | |
call_c_op = self.matching_call_c(call_c_ops_candidates, [base_reg] + args, line, | |
result_type=result_type) | |
if call_c_op is not None: | |
return call_c_op | |
return self.matching_primitive_op(ops, [base_reg] + args, line, result_type=result_type) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
this is some text |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment