-
-
Notifications
You must be signed in to change notification settings - Fork 18k
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
pytest followup #15341
Comments
One more candidate: Replace |
TST: remove KnownFailure (unused), should be replaced by pytest.xfail anyhow xref pandas-dev#15341
TST: remove KnownFailure (unused), should be replaced by pytest.xfail anyhow xref pandas-dev#15341
TST: remove KnownFailure (unused), should be replaced by pytest.xfail anyhow TST: remove nose xref pandas-dev#15341
TST: remove KnownFailure (unused), should be replaced by pytest.xfail anyhow TST: remove nose xref pandas-dev#15341
TST: remove KnownFailure (unused), should be replaced by pytest.xfail anyhow TST: remove nose xref pandas-dev#15341
TST: remove KnownFailure (unused), should be replaced by pytest.xfail anyhow TST: remove nose xref pandas-dev#15341
TST: remove KnownFailure (unused), should be replaced by pytest.xfail anyhow TST: remove nose xref pandas-dev#15341
TST: remove KnownFailure (unused), should be replaced by pytest.xfail anyhow TST: remove nose xref pandas-dev#15341
TST: remove KnownFailure (unused), should be replaced by pytest.xfail anyhow TST: remove nose xref pandas-dev#15341
TST: remove KnownFailure (unused), should be replaced by pytest.xfail anyhow TST: remove nose xref pandas-dev#15341
TST: remove KnownFailure (unused), should be replaced by pytest.xfail anyhow TST: remove nose xref pandas-dev#15341
TST: remove KnownFailure (unused), should be replaced by pytest.xfail anyhow TST: remove nose xref pandas-dev#15341
TST: remove KnownFailure (unused), should be replaced by pytest.xfail anyhow TST: remove nose xref pandas-dev#15341
TST: raise nose.SkipTest -> pytest.skip TST: remove KnownFailure (unused), should be replaced by pytest.xfail anyhow xref #15341 Author: Jeff Reback <[email protected]> Closes #15368 from jreback/skip and squashes the following commits: afdb5f9 [Jeff Reback] TST: raise nose.SkipTest -> pytest.skip
looks good for single processor, not so great for mulit-cpu though. |
https://github.com/box/flaky might be able to replace our home-made |
xref #15341 Author: Jeff Reback <[email protected]> Closes #15408 from jreback/skip and squashes the following commits: 547bee6 [Jeff Reback] TST: print skipped tests files
…nings xref #15341 Author: Jeff Reback <[email protected]> Closes #15416 from jreback/warn and squashes the following commits: a6af576 [Jeff Reback] TST: convert yield based test_pickle.py to parametrized to remove warnings xref #15341
xref #15341 Author: Elliott Sales de Andrade <[email protected]> Closes #15406 from QuLogic/pytest-simple-yield and squashes the following commits: b002752 [Elliott Sales de Andrade] TST: Set PYTHONHASHSEED so xdist doesn't break. 8368772 [Elliott Sales de Andrade] TST: Use fixtures for engine/parser where possible. c6cd346 [Elliott Sales de Andrade] TST: Parametrize remaining simple yield tests. 47bf1a1 [Elliott Sales de Andrade] TST: Replace ENGINES_PARSERS by parametrize.
TST: raise nose.SkipTest -> pytest.skip TST: remove KnownFailure (unused), should be replaced by pytest.xfail anyhow xref pandas-dev#15341 Author: Jeff Reback <[email protected]> Closes pandas-dev#15368 from jreback/skip and squashes the following commits: afdb5f9 [Jeff Reback] TST: raise nose.SkipTest -> pytest.skip
xref pandas-dev#15341 Author: Jeff Reback <[email protected]> Closes pandas-dev#15408 from jreback/skip and squashes the following commits: 547bee6 [Jeff Reback] TST: print skipped tests files
…nings xref pandas-dev#15341 Author: Jeff Reback <[email protected]> Closes pandas-dev#15416 from jreback/warn and squashes the following commits: a6af576 [Jeff Reback] TST: convert yield based test_pickle.py to parametrized to remove warnings xref pandas-dev#15341
xref pandas-dev#15341 Author: Elliott Sales de Andrade <[email protected]> Closes pandas-dev#15406 from QuLogic/pytest-simple-yield and squashes the following commits: b002752 [Elliott Sales de Andrade] TST: Set PYTHONHASHSEED so xdist doesn't break. 8368772 [Elliott Sales de Andrade] TST: Use fixtures for engine/parser where possible. c6cd346 [Elliott Sales de Andrade] TST: Parametrize remaining simple yield tests. 47bf1a1 [Elliott Sales de Andrade] TST: Replace ENGINES_PARSERS by parametrize.
is the getlocale thing still an issue? everything else doesn't need an issue, so can close otherwise. |
It's not a pytest specific thing, so yeah, we can close this one. |
Followup issues to #13856
nose
entirely (TST: remove nose #15368)yield
base tests, see here. incomputation
andtest_pickle.py
, replace with paramterization / fixtures. (TST: Parametrize simple yield tests #15406)pytest-dist
(Test: use xdist #15369)addopts = --disable-pytest-warnings
fromsetup.cfg
(TST: remove rest of yield warnings #15708)pandas/tools/tests/test_util.py:TestLocaleUtils.test_set_locale
@network
using pytest.mark (add other markers?)[x] moveconftest.py
to top-level (TST: move conftest.py to top-level #15731)parametrize
TST: Converting to Pytest Idiom #15990fixtures
TST: Converting to Pytest Idiom #15990nose.SkipTest
->pytest.skip()
(or@pytest.mark.skip
orskipif
) (TST: remove nose #15368)The text was updated successfully, but these errors were encountered: