Skip to content

Use latest stable pandas builds on CI #14

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

Merged
merged 2 commits into from
Sep 29, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
run: |
pip install ray git+https://github.com/modin-project/modin
pip install vaex # use stable as no nightly builds and long build time
pip install git+https://github.com/pandas-dev/pandas --no-deps --ignore-installed # TODO: use nightly builds again
pip install pandas --no-deps --ignore-installed # use stable as erroneous nightly builds and long build time
- name: Run tests
run: |
pytest tests/ -v --ci
8 changes: 1 addition & 7 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,6 @@ def pytest_configure(config):


ci_xfail_ids = [
# vaex's and cudf's interchange dataframe doesn't have __dataframe__()
# See https://github.com/data-apis/dataframe-api/issues/80
"test_dataframe_object.py::test_dunder_dataframe[vaex]",
"test_signatures.py::test_dataframe_method[vaex-__dataframe__]",
"test_dataframe_object.py::test_dunder_dataframe[cudf]",
"test_signatures.py::test_dataframe_method[cudf-__dataframe__]",
# https://github.com/vaexio/vaex/pull/2150
"tests/test_signatures.py::test_column_method[vaex-size]",
# https://github.com/rapidsai/cudf/issues/11320
Expand Down Expand Up @@ -91,7 +85,7 @@ def pytest_collection_modifyitems(config, items):
if config.getoption("--ci"):
for item in items:
if any(id_ in item.nodeid for id_ in ci_xfail_ids):
item.add_marker(pytest.mark.xfail())
item.add_marker(pytest.mark.xfail(strict=True))
elif any(id_ in item.nodeid for id_ in ci_skip_ids):
item.add_marker(pytest.mark.skip("flaky"))
elif r_cudf_roundtrip.search(item.nodeid):
Expand Down