File: bats

package info (click to toggle)
golang-github-containers-psgo 1.9.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 340 kB
  • sloc: makefile: 46; sh: 6
file content (15 lines) | stat: -rwxr-xr-x 291 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

set -eux

# avoid downloads from the internet
export GO111MODULE=off
# use Debian sources instead
GOPATH=/usr/share/gocode:$(pwd)
export GOPATH

# build test binary
make build

# run upstream tests
exec bats test/*.bats --timing --tap --verbose-run --filter-tags !debian_ignore