File tree Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 1
1
## Release notes
2
2
3
- ### 0.13.4 -- TBA
3
+ ### 0.13.4 -- March, 25 2022
4
4
* Add - Allow reading blobs produced by legacy 32-bit compiled mYm library for matlab. PR #995
5
+ * Bugfix - Add missing ` jobs ` argument for multiprocessing PR #997
6
+ * Add - Test for multiprocessing PR #1008
5
7
* Bugfix - Fix external store key name doesn't allow '-' (#1005 ) PR #1006
6
8
7
9
### 0.13.3 -- Feb 9, 2022
Original file line number Diff line number Diff line change 1
- 0.13.4 -- TBA
1
+ 0.13.4 -- March 25, 2022
2
2
----------------------
3
3
* Add - Allow reading blobs produced by legacy 32-bit compiled mYm library for matlab. PR #995
4
+ * Bugfix - Add missing ``jobs `` argument for multiprocessing PR #997
5
+ * Add - Test for multiprocessing PR #1008
4
6
* Bugfix - Fix external store key name doesn't allow '-' (#1005) PR #1006
5
7
6
8
0.13.3 -- Feb 9, 2022
Original file line number Diff line number Diff line change @@ -57,6 +57,12 @@ def test_allow_direct_insert(self):
57
57
key ['experiment_date' ] = '2018-10-30'
58
58
self .experiment .insert1 (key , allow_direct_insert = True )
59
59
60
+ def test_multi_processing (self ):
61
+ assert self .subject , 'root tables are empty'
62
+ assert not self .experiment , 'table already filled?'
63
+ self .experiment .populate (processes = 2 )
64
+ assert len (self .experiment ) == len (self .subject )* self .experiment .fake_experiments_per_subject
65
+
60
66
@raises (DataJointError )
61
67
def test_allow_insert (self ):
62
68
assert_true (self .subject , 'root tables are empty' )
You can’t perform that action at this time.
0 commit comments