Skip to content

Commit

Permalink
chore(tests): move to modules folder
Browse files Browse the repository at this point in the history
  • Loading branch information
getchoo committed Dec 20, 2024
1 parent 1de431f commit 4db6b13
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -194,13 +194,13 @@

{
darwin = {
test-unstable = callUnstable ./tests/darwin.nix;
test-stable = callStable ./tests/darwin.nix;
test-unstable = callUnstable ./modules/tests/darwin.nix;
test-stable = callStable ./modules/tests/darwin.nix;
};

linux = {
test-unstable = callUnstable ./tests/nixos.nix;
test-stable = callStable ./tests/nixos.nix;
test-unstable = callUnstable ./modules/tests/nixos.nix;
test-stable = callStable ./modules/tests/nixos.nix;
};
}
.${kernelName} or { };
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/home.nix → modules/tests/home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

{
imports = [
../modules/home-manager
../home-manager
./common.nix
];

Expand Down
2 changes: 1 addition & 1 deletion tests/nixos.nix → modules/tests/nixos.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ testers.runNixOSTest {
{
imports = [
home-manager.nixosModules.default
../modules/nixos
../nixos
./common.nix
];

Expand Down
File renamed without changes.

0 comments on commit 4db6b13

Please sign in to comment.