Skip to content

Commit a6fc812

Browse files
committed
atests: Make skipped tests non-critical.
1 parent 3f7bd49 commit a6fc812

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/run.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,15 @@
6060
command = ['python', '-m', 'robot.run',
6161
'--variable', 'INTERPRETER:%s' % interpreter,
6262
'--name', '%s Remote Server' % interpreter.title(),
63+
'--noncritical', 'skip',
6364
'--output', output, '--log', 'NONE', '--report', 'NONE'] + arguments
6465
print 'Running acceptance tests with command:\n%s' % ' '.join(command)
6566
subprocess.call(command)
6667
print
6768

6869
print 'Verifying results.'
6970
robotstatuschecker.process_output(output)
70-
rc = robot.rebot(output, outputdir=results)
71+
rc = robot.rebot(output, outputdir=results, noncritical='skip')
7172
print
7273
if rc == 0:
7374
print 'All tests passed.'

0 commit comments

Comments
 (0)