From efa67a9266bfdfeaa7c1983ada241c14aa7def46 Mon Sep 17 00:00:00 2001 From: Leo Date: Wed, 3 Mar 2021 20:14:31 -0300 Subject: [PATCH] testing/wuzz: fix build, actually run tests --- testing/wuzz/APKBUILD | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/testing/wuzz/APKBUILD b/testing/wuzz/APKBUILD index 02a7a22d527..e88b0fe9420 100644 --- a/testing/wuzz/APKBUILD +++ b/testing/wuzz/APKBUILD @@ -4,6 +4,7 @@ pkgname=wuzz pkgver=0.5.0 pkgrel=0 pkgdesc="Interactive CLI tool for HTTP inspection" +options="net" url="https://github.com/asciimoo/wuzz" arch="all" license="AGPL-3.0-only" @@ -18,11 +19,12 @@ prepare() { } build() { - go build + go mod download + go build -v } check() { - go test + go test ./... } package() {