From 1859eb8b7af8d6de76b07a83e3359cd0d6a7e342 Mon Sep 17 00:00:00 2001 From: 778a69cd <778a69cd@potsda.mn> Date: Wed, 6 Mar 2024 00:04:15 +0100 Subject: [PATCH] move nixos-test to integration-test.nix (cherry picked from commit fa813f621677a31304ab78e9d211564c09e561e3) --- flake.nix | 2 +- nixos-test.nix => integration-test.nix | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename nixos-test.nix => integration-test.nix (100%) diff --git a/flake.nix b/flake.nix index ca95adc5b..df1672942 100644 --- a/flake.nix +++ b/flake.nix @@ -220,7 +220,7 @@ overlays = [ self.overlays.default ]; }; certs = import "${nixpkgs}/nixos/tests/common/acme/server/snakeoil-certs.nix"; - test = import ./nixos-test.nix { inherit certs; }; + test = import ./integration-test.nix { inherit certs; }; in pkgsMobilizon.nixosTest test; }); diff --git a/nixos-test.nix b/integration-test.nix similarity index 100% rename from nixos-test.nix rename to integration-test.nix