Skip to content

Commit b89fa60

Browse files
committed
Change library file name check to be case-insensitive. Refactoring.
1 parent 530c3ca commit b89fa60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

atest/run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
name = interpreters + '_-_' + library_file.rsplit('.', 1)[0]
5252
args = [runner_interpreter, '-m', 'robot.run', '--name', name,
5353
'--output', OUTPUT, '--log', 'NONE', '--report', 'NONE']
54-
if 'Minimal' in library_file:
54+
if 'minimal' in library_file.lower():
5555
args.extend(['--exclude', 'argsknown'])
5656
args.extend(clargs or [join(BASE, 'tests')])
5757
print 'Running tests with command:\n%s' % ' '.join(args)

0 commit comments

Comments
 (0)