File: 0003-skip-network-needing-tests.patch

package info (click to toggle)
sptlrx 1.2.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 424 kB
  • sloc: makefile: 6
file content (14 lines) | stat: -rw-r--r-- 443 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Description: Skip tests requiring network.
Author: Martin Dosch <martin@mdosch.de>
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/pool/pool_test.go
+++ b/pool/pool_test.go
@@ -7,6 +7,7 @@
 )
 
 func TestGetIndex(t *testing.T) {
+	t.Skip("No network available during debian package build.")
 	service := hosted.New("lyricsapi.vercel.app")
 	lines, err := service.Lyrics("", "Death Grips No Love")
 	if err != nil {