Skip to content

Commit 023ceeb

Browse files
committed
fix windows path
1 parent ccef97f commit 023ceeb

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/JupyterLibrary/core.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,12 @@ class JupyterLibraryListener(LibraryListener):
6868

6969
def start_suite(self, name, attrs):
7070
super(JupyterLibraryListener, self).start_suite(name, attrs)
71-
resources = COMMON
71+
resources = []
72+
73+
for common in COMMON:
74+
resources += [
75+
"JupyterLibrary/common/{}".format(basename(common))
76+
]
7277

7378
for client in CLIENTS:
7479
for path in glob(join(client, "*.robot")):

0 commit comments

Comments
 (0)