https://github.com/google/cayley
Revision 7ba88e748e9a9e1077ce189960bf93c087e6e3ef authored by Denys Smirnov on 13 March 2016, 16:59:48 UTC, committed by Denys Smirnov on 15 July 2016, 00:52:05 UTC
1 parent ce2c62e
Raw File
Tip revision: 7ba88e748e9a9e1077ce189960bf93c087e6e3ef authored by Denys Smirnov on 13 March 2016, 16:59:48 UTC
Update value comparison iterator. Stop graph.Value madness.
Tip revision: 7ba88e7
.travis.yml
language: go

sudo: false

go:
  - 1.5
  - 1.6
  - tip

install:
  # Install our tracked dependencies
  - go get -t ./...
  - go get github.com/tools/godep
  - godep restore

  # Google App Engine dependencies
  - cd ..
  - wget https://storage.googleapis.com/appengine-sdks/featured/go_appengine_sdk_linux_amd64-1.9.23.zip
  - unzip -q go_appengine_sdk_linux_amd64-1.9.23.zip
  - export PATH=$PATH:$PWD/go_appengine/
  - $PWD/go_appengine/goapp get github.com/stretchr/testify/require
  - cd cayley

script:
  - go test -v ./...
  - goapp test -v ./graph/gaedatastore

matrix:
  allow_failures:
    - go: tip
back to top