Skip to content
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

Fix failing tests #459

Merged
merged 3 commits into from
Apr 2, 2024
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 @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
continue-on-error: True
env:
MEMGRAPH_VERSION: 2.14.1
MEMGRAPH_VERSION: 2.15.1
strategy:
matrix:
architecture: ["amd64", "arm64"]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_no_ml.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
continue-on-error: True
env:
MEMGRAPH_VERSION: 2.14.1
MEMGRAPH_VERSION: 2.15.1
strategy:
matrix:
architecture: ["amd64", "arm64"]
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
PYTHONPATH: "$PWD/e2e"
run: |
cd e2e
docker exec -i -u root ${{ env.MAGE_CONTAINER }} bash -c "cd /mage/e2e/ && python3 -m pytest . -k 'not cugraph and not tgn and not link_prediction and not node_classification'"
docker exec -i -u root ${{ env.MAGE_CONTAINER }} bash -c "cd /mage/e2e/ && python3 -m pytest . -k 'not cugraph and not tgn and not link_prediction and not node_classification and not text'"

- name: Run End-to-end correctness tests
if: matrix.architecture != 'arm64'
Expand Down
100 changes: 50 additions & 50 deletions e2e/igraphalg_test/test_all_shortest_path_length_no_path/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,81 +2,81 @@ query: >
CALL igraphalg.all_shortest_path_lengths("weight")
YIELD src_node,dest_node,length
RETURN src_node.id as src_node_id, dest_node.id as dest_node_id, toString(length) as length
ORDER BY src_node_id ASC;
ORDER BY src_node_id ASC, dest_node_id ASC;

output:
- dest_node_id: 0
length: '0'
src_node_id: 0
- dest_node_id: 1
length: '6'
length: '6'
src_node_id: 0
- dest_node_id: 3
length: '11'
src_node_id: 0
- dest_node_id: 4
length: inf
- dest_node_id: 3
length: '11'
src_node_id: 0
- dest_node_id: 5
length: inf
- dest_node_id: 4
length: inf
src_node_id: 0
- dest_node_id: 0
length: '0'
- dest_node_id: 5
length: inf
src_node_id: 0
- dest_node_id: 0
length: '6'
length: '6'
src_node_id: 1
- dest_node_id: 1
length: '0'
- dest_node_id: 1
length: '0'
src_node_id: 1
- dest_node_id: 3
length: '5'
- dest_node_id: 3
length: '5'
src_node_id: 1
- dest_node_id: 4
length: inf
- dest_node_id: 4
length: inf
src_node_id: 1
- dest_node_id: 5
length: inf
- dest_node_id: 5
length: inf
src_node_id: 1
- dest_node_id: 3
length: '0'
- dest_node_id: 0
length: '11'
src_node_id: 3
- dest_node_id: 5
length: inf
- dest_node_id: 1
length: '5'
src_node_id: 3
- dest_node_id: 4
length: inf
- dest_node_id: 3
length: '0'
src_node_id: 3
- dest_node_id: 1
length: '5'
- dest_node_id: 4
length: inf
src_node_id: 3
- dest_node_id: 0
length: '11'
- dest_node_id: 5
length: inf
src_node_id: 3
- dest_node_id: 0
length: inf
- dest_node_id: 0
length: inf
src_node_id: 4
- dest_node_id: 1
length: inf
- dest_node_id: 1
length: inf
src_node_id: 4
- dest_node_id: 3
length: inf
src_node_id: 4
- dest_node_id: 3
length: inf
- dest_node_id: 4
length: '0'
src_node_id: 4
- dest_node_id: 4
length: '0'
- dest_node_id: 5
length: '7'
src_node_id: 4
- dest_node_id: 5
length: '7'
src_node_id: 4
- dest_node_id: 0
length: inf
- dest_node_id: 0
length: inf
src_node_id: 5
- dest_node_id: 1
length: inf
- dest_node_id: 1
length: inf
src_node_id: 5
- dest_node_id: 3
- dest_node_id: 3
length: inf
src_node_id: 5
- dest_node_id: 4
length: '7'
- dest_node_id: 4
length: '7'
src_node_id: 5
- dest_node_id: 5
length: '0'
- dest_node_id: 5
length: '0'
src_node_id: 5
Loading