16 lines
466 B
Python
Executable File
16 lines
466 B
Python
Executable File
#!/usr/bin/python3
|
|
import os
|
|
import sys
|
|
# Setup the path to load local kibot module
|
|
prev_dir = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
if sys.path[0] != prev_dir:
|
|
try:
|
|
sys.path.remove(prev_dir)
|
|
except ValueError:
|
|
pass
|
|
sys.path.insert(0, prev_dir)
|
|
# Force the pcbnew module load to fail
|
|
sys.modules['yaml'] = None
|
|
# Import the module to test
|
|
from kibot.config_reader import CfgYamlReader # noqa: F401
|