Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1"""Change the sys path so that `test` modules can import `control` modules.""" 

2 

3import sys 

4import os 

5 

6SERVER_PATH = os.path.split(os.path.split(os.path.realpath(__file__))[0])[0] 

7 

8sys.path.insert(0, SERVER_PATH)