bazel: consolidate bazel test invocations

This way it can run them in parallel.
This commit is contained in:
Benjamin Staffin 2017-02-28 12:21:52 -05:00
parent baac92fc41
commit 14ef7c0c59

View File

@ -75,8 +75,9 @@ stdenv.mkDerivation rec {
doCheck = true;
checkPhase = ''
export TEST_TMPDIR=$(pwd)
./output/bazel test --test_output=errors examples/cpp:hello-success_test
./output/bazel test --test_output=errors examples/java-native/src/test/java/com/example/myproject:hello
./output/bazel test --test_output=errors \
examples/cpp:hello-success_test \
examples/java-native/src/test/java/com/example/myproject:hello
'';
installPhase = ''