Revision: 3119
Author: jussi.ao.malinen
Date: Mon May 3 04:23:28 2010
Log: now excludes nonwindows tagged tests on windows
http://code.google.com/p/robotframework/source/detail?r=3119
Modified:
/trunk/atest/run_atests.py
=======================================
--- /trunk/atest/run_atests.py Mon May 3 00:28:30 2010
+++ /trunk/atest/run_atests.py Mon May 3 04:23:28 2010
@@ -74,6 +74,8 @@
'RUNNER': ('python' in os.path.basename(interpreter) and 'pybot'
or 'jybot')
}
+ if os.name == 'nt':
+ args += ' --exclude nonwindows'
runner = os.path.join(os.path.dirname(robot.__file__), 'runner.py')
command = '%s %s %s %s' % (sys.executable, runner,
args, ' '.join(params))
print 'Running command\n%s\n' % command