Stop running tests in the bazel build.

These always fail at present. We'll need to look into making them not
always fail so we can enable them and get some useful signal from them.
This commit is contained in:
iphydf 2018-08-12 14:24:38 +00:00
parent a743464623
commit b3036c55a6
No known key found for this signature in database
GPG Key ID: 3855DBA2D74403C9

View File

@ -14,8 +14,10 @@ travis_install() {
} }
travis_script() { travis_script() {
# TODO(iphydf): Make tests have a chance to succeed.
# Run the tests, but if they fail, at least we should be able to build. # Run the tests, but if they fail, at least we should be able to build.
bazel test //c-toxcore/... || bazel build //c-toxcore/... # bazel test //c-toxcore/... || bazel build //c-toxcore/...
bazel build //c-toxcore/...
} }
if [ "-z" "$ACTION" ]; then if [ "-z" "$ACTION" ]; then