#!/bin/bash
set -e

# setup GOPATH for running the tests
export GOPATH="$PWD/_build:/usr/share/gocode"

# run _all_ the tests, not just the non-network tests
go test -v github.com/constabulary/gb/...
