mirror of
https://github.com/logos-storage/logos-storage-nim.git
synced 2026-07-31 22:13:16 +00:00
16 lines
481 B
Nim
16 lines
481 B
Nim
|
|
import std/os
|
||
|
|
import std/strutils
|
||
|
|
import ./imports
|
||
|
|
|
||
|
|
## Real-topology NAT scenarios (need podman + the storage-nat image).
|
||
|
|
## Limit which scenarios run with STORAGE_INTEGRATION_TEST_INCLUDES, listing test
|
||
|
|
## file paths, exactly as testIntegration does.
|
||
|
|
const includes = getEnv("STORAGE_INTEGRATION_TEST_INCLUDES")
|
||
|
|
|
||
|
|
when includes != "":
|
||
|
|
importAll(includes.split(","))
|
||
|
|
else:
|
||
|
|
importTests(currentSourcePath().parentDir() / "integration" / "nat", "")
|
||
|
|
|
||
|
|
{.warning[UnusedImport]: off.}
|