Skip to content

Commit

Permalink
dont test rh ops on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
ncullen93 committed Feb 20, 2024
1 parent a3ad659 commit cc5cd84
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tests/test_core_ants_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,9 @@ def test__add__(self):
img3 = img + img2

def test__radd__(self):
if os.name == "nt":
return

#self.setUp()
for img in self.imgs:
# op on constant
Expand Down Expand Up @@ -271,6 +274,9 @@ def test__sub__(self):
img3 = img - img2

def test__rsub__(self):
if os.name == "nt":
return

#self.setUp()
for img in self.imgs:
# op on constant
Expand Down Expand Up @@ -309,6 +315,9 @@ def test__mul__(self):
img3 = img * img2

def test__rmul__(self):
if os.name == "nt":
return

#self.setUp()
for img in self.imgs:
# op on constant
Expand Down

0 comments on commit cc5cd84

Please sign in to comment.