nixpkgs/pkgs/development/ruby-modules/runtests.sh

7 lines
239 B
Bash
Raw Permalink Normal View History

2017-05-27 22:19:34 +00:00
#!/usr/bin/env bash
set -o xtrace
2017-07-03 00:18:58 +00:00
cd $(dirname $0)
2017-05-27 22:19:34 +00:00
find . -name text.nix
testfiles=$(find . -name test.nix)
nix-build -E "with import <nixpkgs> {}; callPackage testing/driver.nix { testFiles = [ $testfiles ]; }" --show-trace && cat result