diff --git a/circle.yml b/circle.yml index 04110ab..2e965ff 100644 --- a/circle.yml +++ b/circle.yml @@ -9,11 +9,13 @@ jobs: steps: - checkout # specify any bash command here prefixed with `run: ` + - run: apt-get update + - run: apt-get -y install xvfb # override: # './...' is a relative pattern which means all subdirectories # - run: go get -u golang.org/x/sys/unix - run: go get -v -t -d ./... - - run: go test -v ./... + - run: xvfb-run go test -v ./... # codecov.io # - run: go test -v -covermode=count -coverprofile=coverage.out # - run: bash <(curl -s https://codecov.io/bash)