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 9996fd8 commit 90e796aCopy full SHA for 90e796a
utils/modify_tests.py
@@ -149,9 +149,10 @@ def main():
149
with open("./tests/conftest.py", "r") as read_f:
150
conftest_content = read_f.read()
151
updated_conftest_content = conftest_content.replace(
152
- "Path(inspect.getfile(playwright)).parent / 'driver'",
153
- "Path(inspect.getfile(patchright)).parent / 'driver'"
+ "Path(inspect.getfile(playwright)).parent",
+ "Path(inspect.getfile(patchright)).parent"
154
)
155
+
156
with open("./tests/conftest.py", "w") as write_f:
157
write_f.write(updated_conftest_content)
158
0 commit comments