testing: move shell-hello.nix from global assets to flakes

Change-Id: I0039e82cd5ed069d901f4dd96cf33102216a11ea
This commit is contained in:
eldritch horrors
2026-02-21 16:36:44 +00:00
parent 46f99487de
commit ff8a10f9cd
2 changed files with 2 additions and 2 deletions
+2 -2
View File
@@ -1,13 +1,13 @@
from testlib.fixtures.nix import Nix
from testlib.fixtures.file_helper import with_files
from testlib.utils import get_global_asset, CopyTemplate
from testlib.utils import get_global_asset, CopyTemplate, CopyFile
from testlib.environ import environ
import pytest
@with_files(
{
"shell-hello.nix": get_global_asset("shell-hello.nix"),
"shell-hello.nix": CopyFile("assets/shell-hello.nix"),
"config.nix": get_global_asset("config.nix"),
"flake.nix": CopyTemplate("assets/run/flake.nix", {"system": environ.get("system")}),
}