fix: skip test when run in github action

This commit is contained in:
zenix.huang 2024-03-12 17:48:55 +09:00
parent d4eef3e3f9
commit 8268ac1d32
2 changed files with 10 additions and 2 deletions

View File

@ -20,6 +20,7 @@ jobs:
go-version: go-version:
- "1.20" - "1.20"
env: env:
GITHUB_CI: true
MYSQL_DATABASE: bbgo MYSQL_DATABASE: bbgo
MYSQL_USER: "root" MYSQL_USER: "root"
MYSQL_PASSWORD: "root" # pragma: allowlist secret MYSQL_PASSWORD: "root" # pragma: allowlist secret

View File

@ -2,6 +2,7 @@ package binance
import ( import (
"context" "context"
"os"
"strings" "strings"
"testing" "testing"
@ -22,6 +23,12 @@ func Test_new(t *testing.T) {
assert.NotEmpty(t, ex) assert.NotEmpty(t, ex)
ctx := context.Background() ctx := context.Background()
ticker, err := ex.QueryTicker(ctx, "btcusdt") ticker, err := ex.QueryTicker(ctx, "btcusdt")
assert.NotEmpty(t, ticker) if len(os.Getenv("GITHUB_CI")) > 0 {
assert.NoError(t, err) // Github action runs in the US, and therefore binance api is not accessible
assert.Empty(t, ticker)
assert.Error(t, err)
} else {
assert.NotEmpty(t, ticker)
assert.NoError(t, err)
}
} }