-
Notifications
You must be signed in to change notification settings - Fork 50
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
Do not parse dates as prices. Sort imports. #19
base: master
Are you sure you want to change the base?
Conversation
Codecov Report
@@ Coverage Diff @@
## master #19 +/- ##
=====================================
Coverage 100% 100%
=====================================
Files 3 3
Lines 95 114 +19
Branches 21 26 +5
=====================================
+ Hits 95 114 +19
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changes seem great in general, now we just need to try and keep test coverage to 100%
tests/test_price_parsing.py
Outdated
'$', '10', 10), | ||
|
||
Example(None, '$10 EUR at March, 2016 or 2019-08-19', | ||
'$', '10', 10), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hey @bulatbulat48! All these tests are added to PRICE_PARSING_EXAMPLES_XFAIL, i.e. a list of examples which are known not to work. It means that if they fail, test suite is green. Could you please move them to PRICE_PARSING_EXAMPLES_BUGS_CAUGHT?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Got it. Moved tests. Thank you for the review!
#4