Skip to content

Commit

Permalink
Remove pytest unordered dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
cmalinmayor committed May 16, 2024
1 parent 807e682 commit 1b1a698
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ dependencies = [
dev = [
"pytest",
"pytest-cov",
"pytest-unordered",
"flake8",
"mypy",
"types-requests",
Expand Down
3 changes: 1 addition & 2 deletions tests/cases/csv_points_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import numpy as np
import pytest
from pytest_unordered import unordered
import unittest

from gunpowder import (
Expand Down Expand Up @@ -74,4 +73,4 @@ def test_pipeline3(test_points):
result_points = list(request[points_key].nodes)
result_locs = [list(point.location) for point in result_points]

assert result_locs == unordered(target_locs)
assert sorted(result_locs) == sorted(target_locs)

0 comments on commit 1b1a698

Please sign in to comment.