Skip to content

Commit

Permalink
e2e: mark script executable
Browse files Browse the repository at this point in the history
  • Loading branch information
Aeneas Rekkas (arekkas) committed Jan 2, 2017
1 parent bc910fd commit c434914
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 14 deletions.
11 changes: 10 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ go:

go_import_path: github.com/ory-am/hydra

before_install:
- sudo apt-get install curl

install:
- go get github.com/mattn/goveralls golang.org/x/tools/cmd/cover github.com/Masterminds/glide github.com/mitchellh/gox
- git clone https://github.com/docker-library/official-images.git ~/official-images
Expand All @@ -29,7 +32,13 @@ script:
- docker run -d hydra-travis-ci
- hydra host --dangerous-auto-logon --dangerous-force-http &
- while ! echo exit | nc localhost 4444; do sleep 1; done
- ./run-e2e-test-suite.sh
# Test clients
- hydra clients create --id foobar
- hydra clients delete foobar
# Test token on arbitrary endpoints
- curl --header "Authorization: bearer $(hydra token client)" http://localhost:4444/clients
# Test token validation
- hydra token validate $(hydra token client)

after_success:
- |-
Expand Down
13 changes: 0 additions & 13 deletions run-e2e-test-suite.sh

This file was deleted.

0 comments on commit c434914

Please sign in to comment.