File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change 5
5
6
6
class TestSQlite0dSampling (bf .SamplingTestCase ):
7
7
backend = sqlite .SQLite
8
- name = 'test.db'
8
+ name = '/tmp/ test.db'
9
9
shape = ()
10
10
11
11
12
12
class TestSQlite1dSampling (bf .SamplingTestCase ):
13
13
backend = sqlite .SQLite
14
- name = 'test.db'
14
+ name = '/tmp/ test.db'
15
15
shape = 2
16
16
17
17
18
18
class TestSQlite2dSampling (bf .SamplingTestCase ):
19
19
backend = sqlite .SQLite
20
- name = 'test.db'
20
+ name = '/tmp/ test.db'
21
21
shape = (2 , 3 )
22
22
23
23
24
24
class TestSQLite0dSelection (bf .SelectionNoSliceTestCase ):
25
25
backend = sqlite .SQLite
26
- name = 'test.db'
26
+ name = '/tmp/ test.db'
27
27
shape = ()
28
28
29
29
30
30
class TestSQLite1dSelection (bf .SelectionNoSliceTestCase ):
31
31
backend = sqlite .SQLite
32
- name = 'test.db'
32
+ name = '/tmp/ test.db'
33
33
shape = 2
34
34
35
35
36
36
class TestSQLite2dSelection (bf .SelectionNoSliceTestCase ):
37
37
backend = sqlite .SQLite
38
- name = 'test.db'
38
+ name = '/tmp/ test.db'
39
39
shape = (2 , 3 )
40
40
41
41
42
42
class TestSQLiteDumpLoad (bf .DumpLoadTestCase ):
43
43
backend = sqlite .SQLite
44
44
load_func = staticmethod (sqlite .load )
45
- name = 'test.db'
45
+ name = '/tmp/ test.db'
46
46
shape = (2 , 3 )
47
47
48
48
49
49
class TestNDArraySqliteEquality (bf .BackendEqualityTestCase ):
50
50
backend0 = ndarray .NDArray
51
51
name0 = None
52
52
backend1 = sqlite .SQLite
53
- name1 = 'test.db'
53
+ name1 = '/tmp/ test.db'
54
54
shape = (2 , 3 )
55
55
56
56
You can’t perform that action at this time.
0 commit comments