11 lines
209 B
Python
11 lines
209 B
Python
# test loading of pywsman
|
|
import sys
|
|
|
|
# automake build dir
|
|
sys.path.insert(0, '..')
|
|
sys.path.insert(0, '../.libs')
|
|
# cmake build dir
|
|
sys.path.insert(0, '../../../build/bindings/python')
|
|
|
|
from pywsman import *
|