diff --git a/contrib/ci.sh b/contrib/ci.sh
index 24bf8e5750978f4d9429de6a8eda7f67ec586627..51a02b793277e08466ba6d335bf0f59ac5cd1c6a 100644
--- a/contrib/ci.sh
+++ b/contrib/ci.sh
@@ -8,17 +8,17 @@ cd ..
 
 echo $GOPATH
 
-mkdir -p $GOPATH/go/src/github.com/openfaas/
-cp -r faas $GOPATH/go/src/github.com/openfaas/
+mkdir -p $GOPATH/src/github.com/openfaas/
+cp -r faas $GOPATH/src/github.com/openfaas/
 
 git clone https://github.com/openfaas/certify-incubator
 
-cp -r certify-incubator $GOPATH/go/src/github.com/openfaas/
+cp -r certify-incubator $GOPATH/src/github.com/openfaas/
 
-cd $GOPATH/go/src/github.com/openfaas/faas/ && \
+cd $GOPATH/src/github.com/openfaas/faas/gateway/tests/integration && \
    go test -v
 
-cd $GOPATH/go/src/github.com/openfaas/certify-incubator && \
+cd $GOPATH/src/github.com/openfaas/certify-incubator && \
    make test
 
 exit 0