Skip to content

Commit

Permalink
try rearranging test cases to match other parametrized orders
Browse files Browse the repository at this point in the history
  • Loading branch information
ljwolf committed Aug 16, 2024
1 parent 9f77aae commit dd24c14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esda/tests/test_moran_local_mv.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
w_classic.transform = 'r'
g = Graph.build_contiguity(df).transform("r")

test_over_w = pytest.mark.parametrize("w", [g, w_classic])
test_over_w = pytest.mark.parametrize("w", [w_classic, g], ids=['W', 'Graph'])

@test_over_w
def test_partial_runs(w):
Expand Down

0 comments on commit dd24c14

Please sign in to comment.