mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-06 11:35:24 +08:00
add shim names to iptest
needed for test exclusions
This commit is contained in:
parent
94dca653a3
commit
14bcd6ca32
@ -170,8 +170,13 @@ class TestSection(object):
|
||||
def will_run(self):
|
||||
return self.enabled and all(have[p] for p in self.dependencies)
|
||||
|
||||
shims = {
|
||||
'parallel': 'ipython_parallel',
|
||||
}
|
||||
|
||||
# Name -> (include, exclude, dependencies_met)
|
||||
test_sections = {n:TestSection(n, ['IPython.%s' % n]) for n in test_group_names}
|
||||
test_sections = {n:TestSection(n, [shims.get(n, 'IPython.%s' % n)]) for n in test_group_names}
|
||||
|
||||
|
||||
# Exclusions and dependencies
|
||||
# ---------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user