11 lines
377 B
Python
11 lines
377 B
Python
import importlib.util
|
|
import pathlib
|
|
|
|
_PATH = pathlib.Path(__file__).resolve().parent.parent / "scripts" / "integration-vm.py"
|
|
_spec = importlib.util.spec_from_file_location("integration_vm", _PATH)
|
|
ivm = importlib.util.module_from_spec(_spec)
|
|
_spec.loader.exec_module(ivm)
|
|
|
|
|
|
def test_valid_tiers():
|
|
assert ivm.VALID_TIERS == ("internal", "le-staging", "le-prod-wildcard")
|