Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
district10 committed Nov 29, 2023
1 parent 64c1622 commit 76e7a20
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
name: Wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
fail-fast: true
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]

Expand Down
16 changes: 7 additions & 9 deletions tests/test_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -687,15 +687,13 @@ def test_network_query_enu():
"road_id": 2,
"offset": 5.0,
}
assert hits[0] == [
{
"position": [5.0, 0.0, 0.0],
"direction": [1.0, 0.0, 0.0],
"distance": 0.0,
"road_id": 1,
"offset": 5.0,
},
]
assert hits[0] == {
"position": [5.0, 0.0, 0.0],
"direction": [1.0, 0.0, 0.0],
"distance": 0.0,
"road_id": 1,
"offset": 5.0,
}
assert hits[1:] == [hit1, hit2] or hits[1:] == [hit2, hit1]


Expand Down

0 comments on commit 76e7a20

Please sign in to comment.