We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d12dc5b commit 9a778e4Copy full SHA for 9a778e4
Orange/tests/test_basket_reader.py
@@ -5,6 +5,7 @@
5
import os
6
import tempfile
7
import unittest
8
+import warnings
9
10
import numpy as np
11
@@ -32,6 +33,11 @@ def read_basket(filename):
32
33
34
35
class TestBasketReader(unittest.TestCase):
36
+ def setUp(self):
37
+ # scipy.sparse uses matrix; this filter can be removed when fixed
38
+ warnings.filterwarnings("ignore", ".*matrix subclass.*",
39
+ PendingDeprecationWarning)
40
+
41
@with_file("""a=1,b=2,c=3""")
42
def test_read_variable_is_value_syntax(self, fname):
43
table = read_basket(fname)
0 commit comments