From c6b61efc58c0390aa9e00771432ac2f4eaa3dd56 Mon Sep 17 00:00:00 2001 From: Zhaofeng Li Date: Thu, 2 Jun 2022 16:39:45 -0700 Subject: [PATCH] integration-tests/apply: Test building nodes with dots in names Ref: #92 --- integration-tests/apply/test-script.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/integration-tests/apply/test-script.py b/integration-tests/apply/test-script.py index bdf3c5c..81f4b80 100644 --- a/integration-tests/apply/test-script.py +++ b/integration-tests/apply/test-script.py @@ -102,3 +102,7 @@ with subtest("Check that our Nix store test is actually working"): deployer.succeed(f"nix-build -E 'with import {{}}; writeText \"forbidden-text.txt\" \"{poison}\"'") new_store_paths = " ".join(get_new_store_paths()) deployer.succeed(f"grep -r '{poison}' {new_store_paths}") + +with subtest("Check that we can build nodes with dots in their names"): + deployer.succeed("cd /tmp/bundle &&" \ + f"{colmena} build --evaluator {evaluator} --eval-node-limit 4 --on gamma.tld")