#!/bin/bash
set -e

# setup GOPATH for running the tests
export GOPATH="$PWD/obj-$(dpkg-architecture -qDEB_BUILD_GNU_TYPE):/usr/share/gocode"

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