Skip to content
Snippets Groups Projects
Commit 87a51f12 authored by Kevin Daudt's avatar Kevin Daudt :computer:
Browse files

testing/ticker: skip quote tests on aarch64, armv7, armhf

Yahoo quote tests faile because it cannot connect to guce.yahoo.com from
the builders:

> net/http: TLS handshake timeout,

As it's not easy to skip just that test, skip all the quote tests.
parent 41fa5a17
No related branches found
No related tags found
1 merge request!79570community/firefox-esr: upgrade to 128.7.0
......@@ -29,7 +29,13 @@ build() {
}
check() {
go test ./...
local _skip=
case $CARCH in
# yahoo quote tests fail because failing connection to guce.yahoo.com
aarch64|armv7|armhf) _skip="-skip TestQuote";;
esac
# shellcheck disable=SC2046
go test $_skip ./...
}
package() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment