Files
nixos-hardware/tests/eval-test.sh
zimbatm 8229a43214 improve test scripts
* validated with shellcheck
* allow to evaluate just one for convenience
* reduce verbosity and improve debugging output
2017-12-25 18:00:29 +00:00

12 lines
212 B
Bash
Executable File

#!/bin/sh
set -efu
cd "$(dirname "$0")/.." || exit 1
echo "### Evaluating all profiles ###"
echo
# shellcheck disable=SC2044
for profile in $(find . -name default.nix); do
./tests/eval-one.sh "$profile"
done