Uh oh!
There was an error while loading. Please reload this page.
Conversation
Mostly finished, needs some argument parsing changes.
Codecov Report
@@ Coverage Diff @@## master #81 +/- ##
=========================================
+ Coverage 68.65% 69.36% +0.7%
=========================================
Files 59 60 +1 Lines 10525 10778 +253 =========================================
+ Hits 7226 7476 +250 + Misses 2790 2775 -15 - Partials 509 527 +18
Continue to review full report at Codecov.
|
corona10
left a comment
There was a problem hiding this comment.
@Tim-St Hi, Thanks for the contribution.
I know implementing sort for python interpreter(tim sort) is very hard.
Would you like to add the test about the list for your change?
The test should be run at here.
https://github.com/go-python/gpython/blob/master/py/tests/list.py
Might be coverage will be increased.
ghost
commented
Sep 28, 2019
@corona10 Ok, I will add some test cases. |
corona10
commented
Sep 28, 2019
@Tim-St Thanks for the information! |
corona10
commented
Sep 28, 2019
ghost
commented
Sep 28, 2019
I will add one more thing. a= [1,3,2]
assertlist.sort(a) isNoneasserta== [1, 2, 3]should work. Currently this syntax doesn't work for |
ncw
left a comment
There was a problem hiding this comment.
This looks like excellent work :-)
If we could get the coverage of the patch up to above the threshold that would be perfect!
I didn't see anything which I thought needed changing :-)
ghost
commented
Sep 28, 2019
@ncw Thanks! I'd like to change it to get a higher score, but I don't understand how "codecov" measures the results, and there are no hints on the page which parts should be changed :\ |
ncw
commented
Sep 28, 2019
:-) The output is a bit cryptic The easiest way to improve the coverage is to use the go coverage tools locally to see the bits which haven't been covered in the code you've added. Cover those and the coveralls score will increase! |
ghost
commented
Sep 29, 2019
Hm, when I run this |
corona10
commented
Sep 29, 2019
corona10
commented
Sep 29, 2019
@Tim-St |
No description provided.