Pull Request #27 support defining the token via basic auth, to allow for .netrc support

Lots of http clients (e.g. httpie) support a ~/.netrc file, that can look
like this:

machine travis-cloud-brain-staging.herokuapp.com
login token
password 0-very-secret-token

Igor avatar Igor

Pull request event #87.1 passed

  • Ran for
AMD64
Go: 1.7
Git
The .travis.yml file used for this job is not available
Build Config
{
  "go": 1.7,
  "env": {
    "global": [
      "REDIS_URL=\"redis://\""
    ]
  },
  "addons": {
    "postgresql": "9.4"
  },
  "script": [
    "make deps",
    "make test"
  ],
  "install": [
    "go get github.com/FiloSottile/gvt",
    "go get -u github.com/alecthomas/gometalinter",
    "gometalinter --install --update"
  ],
  "language": "go",
  "services": [
    "redis"
  ]
}