-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
REF/TST: Finish pytest idiom in parser tests #23863
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
REF/TST: Finish pytest idiom in parser tests #23863
Conversation
Hello @gfyoung! Thanks for submitting the PR.
|
424f857
to
94b5524
Compare
Adds more idiom to the following: * parser/common --> parser/test_common * parser/quoting --> parser/test_quoting * parser/usecols --> parser/test_usecols * parser/python_parser_only --> parser/test_python_parser_only Also: * Finally delete parser/test_parsers! * Bug in capture_stdout decorator in which we were forgetting to use compat.wraps. Builds off of pandas-devgh-23712.
94b5524
to
d35a2c4
Compare
Codecov Report
@@ Coverage Diff @@
## master #23863 +/- ##
==========================================
+ Coverage 92.28% 92.29% +<.01%
==========================================
Files 161 161
Lines 51500 51500
==========================================
+ Hits 47528 47533 +5
+ Misses 3972 3967 -5
Continue to review full report at Codecov.
|
thanks! |
Adds more idiom to the following: * parser/common --> parser/test_common * parser/quoting --> parser/test_quoting * parser/usecols --> parser/test_usecols * parser/python_parser_only --> parser/test_python_parser_only Also: * Finally delete parser/test_parsers! * Bug in capture_stdout decorator in which we were forgetting to use compat.wraps. Builds off of pandas-devgh-23712.
Adds more idiom to the following: * parser/common --> parser/test_common * parser/quoting --> parser/test_quoting * parser/usecols --> parser/test_usecols * parser/python_parser_only --> parser/test_python_parser_only Also: * Finally delete parser/test_parsers! * Bug in capture_stdout decorator in which we were forgetting to use compat.wraps. Builds off of pandas-devgh-23712.
Adds more idiom to the following:
parser/usecols
-->parser/test_usecols
parser/quoting
-->parser/test_quoting
parser/common
-->parser/test_common
parser/python_parser_only
-->parser/test_python_parser_only
Also:
parser/test_parsers
! 🎉capture_stdout
in which we forgot to usecompat.wraps
.Builds off of #23712.