Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Investigate awkward test failure #466

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

Closed
Closed
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
5 changes: 5 additions & 0 deletions .github/workflows/test_and_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ jobs:
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
slowtask: ["pytest_normal", "pytest_bizarro", "notebooks"]
akver: ["2.2.2", "2.2.1", "2.2.0", "2.1.4", "2.1.3", "2.1.2", "2.1.1", "2.1.0", "2.0.10", "2.0.9", "2.0.8", "2.0.7", "2.0.6", "2.0.5", "1.10.3", "1.10.2", "1.10.1", "1.9.0"]
env:
# Wheels on OS X come with an OpenMP that conflicts with OpenMP from conda-forge.
# Setting this is a workaround.
Expand Down Expand Up @@ -227,6 +228,10 @@ jobs:
numbaver=$(python -c 'import random ; print(random.choice(["=0.56", "=0.57", ""]))')
fi
fmm=fast_matrix_market${fmmver}
akver="="${{ matrix.akver }}
if [[ ${{ startsWith(steps.pyver.outputs.selected, '3.11') }} == true && ${akver} == "=1.9.0" ]] ; then
akver=""
fi
awkward=awkward${akver}
if [[ ${{ contains(steps.pyver.outputs.selected, 'pypy') ||
startsWith(steps.pyver.outputs.selected, '3.12') }} == true ||
Expand Down
4 changes: 2 additions & 2 deletions graphblas/tests/test_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ def test_scipy_sparse():


@pytest.mark.skipif("not ak")
@pytest.mark.xfail(reason="Need to investigate test failure")
# @pytest.mark.xfail(reason="Need to investigate test failure")
def test_awkward_roundtrip():
# Vector
v = gb.Vector.from_coo([1, 3, 5], [20, 21, -5], size=22)
Expand All @@ -391,7 +391,7 @@ def test_awkward_roundtrip():


@pytest.mark.skipif("not ak")
@pytest.mark.xfail(reason="Need to investigate test failure")
# @pytest.mark.xfail(reason="Need to investigate test failure")
def test_awkward_iso_roundtrip():
# Vector
v = gb.Vector.from_coo([1, 3, 5], [20, 20, 20], size=22)
Expand Down