Fix test suite
This commit is contained in:
parent
0aec1f1833
commit
f3b7bdbc51
|
@ -19,6 +19,7 @@ import sys
|
|||
import time
|
||||
|
||||
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
|
||||
sys.path.append(os.path.join(os.path.dirname(__file__), '.'))
|
||||
|
||||
import carla
|
||||
|
||||
|
@ -174,7 +175,7 @@ def main():
|
|||
|
||||
logging.info('listening to server %s:%s', args.host, args.port)
|
||||
|
||||
print('Running the CARLAUE4 test suite (looks like GTest but is not).')
|
||||
print('Running the CARLAUE4 test suite (looks like GTest but it\'s not).')
|
||||
do_the_tests(args)
|
||||
|
||||
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
# Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma de
|
||||
# Barcelona (UAB), and the INTEL Visual Computing Lab.
|
||||
#
|
||||
# This work is licensed under the terms of the MIT license.
|
||||
# For a copy, see <https://opensource.org/licenses/MIT>.
|
||||
|
||||
class CarlaServerTest(object):
|
||||
def __init__(self, args):
|
||||
self.args = args
|
Loading…
Reference in New Issue