Files
briar/run-tests-without-android.sh
Torsten Grote b956c761bf Add script for running tests without the Android SDK installed
I've tried to find a better way to do this by conditionally including
the briar-android project in settings.gradle, but failed.
Please note that gradle needs to be installed to run the tests by
executing:

    gradle test
2016-01-18 12:47:10 +00:00

5 lines
182 B
Bash
Executable File

#!/bin/sh
sed -i "s@include ':briar-android'@//include ':briar-android'@" settings.gradle
gradle test
sed -i "s@//include ':briar-android'@include ':briar-android'@" settings.gradle