https://github.com/google/cayley
Revision b99aa1dab33f82f6f3a16d1f8f81e77492f73fd8 authored by Denys Smirnov on 09 July 2016, 15:33:50 UTC, committed by Denys Smirnov on 15 July 2016, 00:52:06 UTC
1 parent 43358bf
Raw File
Tip revision: b99aa1dab33f82f6f3a16d1f8f81e77492f73fd8 authored by Denys Smirnov on 09 July 2016, 15:33:50 UTC
Wire Skip and Limit to Gremlin. Also fixed #254.
Tip revision: b99aa1d
.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