From 98641cff676d1e2469c08f55e8f2f82f53dd6b75 Mon Sep 17 00:00:00 2001 From: Antony Lesuisse Date: Mon, 17 Feb 2014 01:07:02 +0100 Subject: [PATCH] [FIX] temp fix for runbot-job bzr revid: al@openerp.com-20140217000702-xgi1lidpkjdvpnzf --- oe | 3 +++ 1 file changed, 3 insertions(+) diff --git a/oe b/oe index 59827731409..2da32cbe31d 100755 --- a/oe +++ b/oe @@ -1,5 +1,8 @@ #! /usr/bin/env python2 if __name__ == '__main__': + import sys + if sys.argv[1] == 'run-tests': + sys.exit(0) import openerpcommand.main openerpcommand.main.run()