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 ab091d4 commit 2829c43Copy full SHA for 2829c43
test/remote/conftest.py
@@ -28,11 +28,11 @@ def process(request):
28
"""
29
# robotremoteserver is not PY3-compatible yet
30
return PY2 and Popen([
31
- sys.executable, '-c', dedent("""
32
- __import__('robottools.remote').remote.RemoteRobot(
33
- [%s], allow_import=[%s]
34
- )""") % (', '.join(map(repr, REMOTE_LIBRARIES)),
35
- ', '.join(map(repr, ALLOWED_REMOTE_IMPORTS)))])
+ sys.executable, '-c',
+ "__import__('robottools.remote').remote.RemoteRobot("
+ " [%s], allow_import=[%s])"
+ % (', '.join(map(repr, REMOTE_LIBRARIES)),
+ ', '.join(map(repr, ALLOWED_REMOTE_IMPORTS)))])
36
37
38
@pytest.fixture(scope='module')
0 commit comments