-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
BUG: read_html with a single column table #9178 #9194
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
Conversation
pls add a test |
Please add a test |
The test should probably test that if it succesfully parses one column table but in which file should I put it? I've never written nose tests. |
Usually tests go in the tests sub-directory and in the module you want to test. For example, you should put your test in |
@boarpig needs a test. |
@boarpig this needs a test pls. |
@boarpig pls add a test |
closing, if/when updated pls reopen |
I have just encountered this bug in 0.18 and the fix from this PR fixed that. Is the only limiting factor to merge this PR adding tests? I could probably do it (and will appreciate any help). |
yep needs tests |
But I can see there are already tests for this part here. What else should be added? This change seems to be sufficiently tested by current tests. Thanks |
I am willing to finish this, but I need an answer to the previous post. |
you need to replicate the example in the issue - that is the test |
I have done it in a new PR (so I don't have to do a rebase). |
This commit fixes a crash on read_html(html, flavor="bs4") if table only has one column.
closes #9178