10 lines
247 B
Python
10 lines
247 B
Python
#!/usr/bin/env python
|
|
"""Import path setup for common workflow_glue tests."""
|
|
|
|
from pathlib import Path
|
|
import sys
|
|
|
|
|
|
# Add /host/bin so `import workflow_glue` resolves in CI containers.
|
|
sys.path.insert(0, str(Path(__file__).resolve().parents[3]))
|