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 ccef97f commit 023ceebCopy full SHA for 023ceeb
src/JupyterLibrary/core.py
@@ -68,7 +68,12 @@ class JupyterLibraryListener(LibraryListener):
68
69
def start_suite(self, name, attrs):
70
super(JupyterLibraryListener, self).start_suite(name, attrs)
71
- resources = COMMON
+ resources = []
72
+
73
+ for common in COMMON:
74
+ resources += [
75
+ "JupyterLibrary/common/{}".format(basename(common))
76
+ ]
77
78
for client in CLIENTS:
79
for path in glob(join(client, "*.robot")):
0 commit comments