##// END OF EJS Templates
add shim names to iptest...
Min RK -
Show More
@@ -170,8 +170,13 b' class TestSection(object):'
170 def will_run(self):
170 def will_run(self):
171 return self.enabled and all(have[p] for p in self.dependencies)
171 return self.enabled and all(have[p] for p in self.dependencies)
172
172
173 shims = {
174 'parallel': 'ipython_parallel',
175 }
176
173 # Name -> (include, exclude, dependencies_met)
177 # Name -> (include, exclude, dependencies_met)
174 test_sections = {n:TestSection(n, ['IPython.%s' % n]) for n in test_group_names}
178 test_sections = {n:TestSection(n, [shims.get(n, 'IPython.%s' % n)]) for n in test_group_names}
179
175
180
176 # Exclusions and dependencies
181 # Exclusions and dependencies
177 # ---------------------------
182 # ---------------------------
General Comments 0
You need to be logged in to leave comments. Login now