Skip to content

Commit 53e88c5

Browse files
committed
chore: fix warnings
declare pytest markers update assert_frame_equal, assert_series_equal import remove array_equal comparison because elementwise comparison can fail here (DeprecationWarning: elementwise comparison failed; this will raise an error in the future.) update incorrect is not comparison
1 parent a4af0b5 commit 53e88c5

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

pytest.ini

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
[pytest]
22
testpaths = tests/
33
addopts =-m "not compiled"
4+
markers =
5+
slow
6+
compiled

pythonwhat/Test.py

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import re
22
import numpy as np
33
import pandas as pd
4+
from pandas.testing import assert_frame_equal, assert_series_equal
45
from pythonwhat.tasks import *
56
from protowhat.Test import Test
67

@@ -115,21 +116,19 @@ def is_equal(x, y):
115116
# Types of errors don't matter (this is debatable)
116117
return str(x) == str(y)
117118
if areinstance(x, y, (np.ndarray, dict, list, tuple)):
118-
if np.array_equal(x, y):
119-
return True
120119
np.testing.assert_equal(x, y)
121120
return True
122121
elif areinstance(x, y, (map, filter)):
123122
return np.array_equal(list(x), list(y))
124123
elif areinstance(x, y, (pd.DataFrame,)):
125124
if x.equals(y):
126125
return True
127-
pd.util.testing.assert_frame_equal(x, y)
126+
assert_frame_equal(x, y)
128127
return True
129128
elif areinstance(x, y, (pd.Series,)):
130129
if x.equals(y):
131130
return True
132-
pd.util.testing.assert_series_equal(x, y)
131+
assert_series_equal(x, y)
133132
return True
134133
else:
135134
return x == y
@@ -185,4 +184,4 @@ def test(self):
185184
if self.pattern:
186185
self.result = re.search(self.search_string, self.string) is not None
187186
else:
188-
self.result = self.string.find(self.search_string) is not -1
187+
self.result = self.string.find(self.search_string) != -1

0 commit comments

Comments
 (0)