Skip to content

Commit 7fa67e2

Browse files
committed
atests: tuning suite name
1 parent a6fc812 commit 7fa67e2

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/run.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
import sys
2929
import subprocess
30-
from os.path import abspath, dirname, exists, join
30+
from os.path import abspath, basename, dirname, exists, join, splitext
3131
from os import mkdir
3232
from shutil import rmtree
3333

@@ -59,7 +59,8 @@
5959

6060
command = ['python', '-m', 'robot.run',
6161
'--variable', 'INTERPRETER:%s' % interpreter,
62-
'--name', '%s Remote Server' % interpreter.title(),
62+
'--name', '%s Remote Server' % splitext(basename(interpreter))[0].title(),
63+
'--metadata', 'Server_Interpreter:%s' % interpreter,
6364
'--noncritical', 'skip',
6465
'--output', output, '--log', 'NONE', '--report', 'NONE'] + arguments
6566
print 'Running acceptance tests with command:\n%s' % ' '.join(command)

0 commit comments

Comments
 (0)