We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b464784 commit 59dbfc9Copy full SHA for 59dbfc9
2 files changed
.github/dependabot.yml
@@ -0,0 +1,8 @@
1
+---
2
+version: 2
3
+updates:
4
+- package-ecosystem: gomod
5
+ directory: "/"
6
+ schedule:
7
+ interval: daily
8
+ open-pull-requests-limit: 10
scripts/integration.sh
@@ -65,7 +65,7 @@ function token::fetch() {
65
function tests::run() {
66
util::print::title "Run Buildpack Runtime Integration Tests"
67
pushd "${BUILDPACKDIR}" > /dev/null
68
- if GOMAXPROCS=4 go test -timeout 0 ./integration/... -v -run Integration; then
+ if GOMAXPROCS="${GOMAXPROCS:-4}" go test -count=1 -timeout 0 ./integration/... -v -run Integration; then
69
util::print::success "** GO Test Succeeded **"
70
else
71
util::print::error "** GO Test Failed **"
0 commit comments