Skip to content

Commit b6134ea

Browse files
start the correct service
1 parent 38474f5 commit b6134ea

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/main.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest-16-cores
1515
steps:
1616
- uses: actions/checkout@v4
17-
- run: docker compose up pubsub -d
17+
- run: docker compose up bigquery -d
1818
- uses: asdf-vm/actions/setup@v3
1919
- id: asdf-cache
2020
uses: actions/cache@v4

internal/cost/updater_test.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ const (
2727
tenant = "test"
2828
daysToFetch = 3650
2929
chanSize = 1000
30-
YYYYMMDD = "2006-01-02"
3130
)
3231

3332
var costUpdaterOpts = []cost.Option{
@@ -37,7 +36,7 @@ var costUpdaterOpts = []cost.Option{
3736
func TestUpdater_FetchBigQueryData(t *testing.T) {
3837
_, err := net.DialTimeout("tcp", bigQueryHost, 100*time.Millisecond)
3938
if err != nil {
40-
t.Skipf("BigQuery is not available on "+bigQueryHost+" (%s), skipping test. You can start the service with `docker compose up -d`", err)
39+
t.Skipf("BigQuery is not available on "+bigQueryHost+" (%s), skipping test. You can start the service with `docker compose up bigquery -d`", err)
4140
}
4241

4342
ctx := context.Background()

0 commit comments

Comments
 (0)