Remove code specific to Fuel in run_tests.py

Change-Id: I99e2b823eb4d8b67f78baa9296b25ea9a5d65b47
This commit is contained in:
Simon Pasquier 2016-06-21 12:20:59 +02:00
parent ed96a13688
commit a25b39c09b

View File

@ -13,8 +13,6 @@
# under the License.
import os
import re
import sys
from nose import plugins
from paramiko import transport
@ -73,10 +71,4 @@ def run_tests():
if __name__ == '__main__':
import_tests()
from fuelweb_test.helpers.patching import map_test
if any(re.search(r'--group=patching_master_tests', arg)
for arg in sys.argv):
map_test('master')
elif any(re.search(r'--group=patching.*', arg) for arg in sys.argv):
map_test('environment')
run_tests()