common.py
Go to the documentation of this file.
1 from __future__ import absolute_import
2 
3 import os
4 import sys
5 
6 # to be able to run from source and access srv and other catkin generated classes in devel space
7 print sys.path
8 src_py_pkg = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..', '..', '..'))
9 if os.path.exists(src_py_pkg):
10  sys.path.append(src_py_pkg)
11 
12 
13 class TestArgumentNotFound(Exception):
14  pass


pyros_test
Author(s): AlexV
autogenerated on Mon Jun 10 2019 14:20:23