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 258b24c commit 0d72a38Copy full SHA for 0d72a38
tests/test_fetch.py
@@ -6,6 +6,7 @@
6
import pandas
7
import warnings
8
from . import schema
9
+from .schema import Parent
10
import datajoint as dj
11
import os
12
@@ -287,7 +288,12 @@ def test_query_caching(self):
287
288
289
# reset cache directory state (will fail if purge was unsuccessful)
290
os.rmdir(os.path.expanduser('~/dj_query_cache'))
-
291
+
292
def test_fetch_group_by(self):
293
# nosetests -vs --tests=tests.test_fetch:TestFetch.test_fetch_group_by --nologcapture
- schema.Parent.fetch('KEY', order_by='name')
294
+ # https://github.com/datajoint/datajoint-python/issues/914
295
296
+ # This command is confirmed to work in v0.12.9 but not in v0.13.2
297
298
+ Parent().fetch('KEY', order_by='name')
299
0 commit comments