1#!/usr/bin/env bash 2set -o xtrace 3cd $(dirname $0) 4find . -name text.nix 5testfiles=$(find . -name test.nix) 6nix-build -E "with import <nixpkgs> {}; callPackage testing/driver.nix { testFiles = [ $testfiles ]; }" --show-trace && cat result