summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorYegor Timoshenko <yegortimoshenko@riseup.net>2018-07-17 15:27:07 +0300
committerYegor Timoshenko <yegortimoshenko@riseup.net>2018-07-17 15:27:07 +0300
commit043605cfec0344b029947c306957695a2b1a1d4d (patch)
tree2b77ce9569853392c1c52630c617351a08b9feca /tests
parent585a13d8b929aba086bed5f1fa3317afd30c39b3 (diff)
Fix tests
Diffstat (limited to 'tests')
-rw-r--r--tests/eval.nix15
-rwxr-xr-xtests/eval.sh16
2 files changed, 0 insertions, 31 deletions
diff --git a/tests/eval.nix b/tests/eval.nix
deleted file mode 100644
index e946b0b..0000000
--- a/tests/eval.nix
+++ /dev/null
@@ -1,15 +0,0 @@
-{
- imports = [ <nixos-hardware-profile> ];
-
- boot.loader.systemd-boot.enable = true;
-
- fileSystems."/" = {
- device = "/dev/disk/by-uuid/00000000-0000-0000-0000-000000000000";
- fsType = "btrfs";
- };
-
- nixpkgs.config = {
- allowBroken = true;
- allowUnfree = true;
- };
-}
diff --git a/tests/eval.sh b/tests/eval.sh
deleted file mode 100755
index 0f21fe3..0000000
--- a/tests/eval.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-
-set -e
-
-cd "$(dirname "$0")/.."
-
-for profile in $(find . -name default.nix); do
- echo evaluating $profile >&2
-
- nix-build '<nixpkgs/nixos>' \
- -I nixos-config=tests/eval.nix \
- -I nixos-hardware-profile=$profile \
- -A system \
- --dry-run \
- --show-trace
-done