Skip to content

Commit 78d66c6

Browse files
changes in config for arangodbImage and test cahges in V1
1 parent 3642ecb commit 78d66c6

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ parameters:
4141
default: "gcr.io/gcr-for-testing/golang:1.24.9"
4242
arangodbImage:
4343
type: string
44-
default: "gcr.io/gcr-for-testing/arangodb/enterprise-preview:latest"
44+
default: "public.ecr.aws/b0b8h2r4/enterprise-preview:2025-12-01-devel-d759089-amd64"
4545
alpineImage:
4646
type: string
4747
default: "gcr.io/gcr-for-testing/alpine:3.21"

test/asyncjob_test.go

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,9 @@ func TestAsyncJobListPending(t *testing.T) {
101101
EnsureVersion(t, ctx, c).CheckVersion(MinimumVersion("3.11.1"))
102102
skipResilientSingle(t)
103103

104+
// for disabling v8 tests
105+
skipBelowVersion(c, "4.0", t)
106+
104107
db := ensureDatabase(ctx, c, databaseName("db", "async"), nil, t)
105108
defer func() {
106109
err := db.Remove(ctx)
@@ -254,6 +257,9 @@ func TestAsyncJobDelete(t *testing.T) {
254257
})
255258

256259
t.Run("delete pending job", func(t *testing.T) {
260+
// for disabling v8 tests
261+
skipBelowVersion(c, "4.0", t)
262+
257263
idTransaction := runLongRequest(t, ctxAsync, db, 10, col.Name())
258264
require.NotEmpty(t, idTransaction)
259265

@@ -275,6 +281,9 @@ func TestAsyncJobDelete(t *testing.T) {
275281
})
276282

277283
t.Run("delete expired jobs", func(t *testing.T) {
284+
// for disabling v8 tests
285+
skipBelowVersion(c, "4.0", t)
286+
278287
idTransaction := runLongRequest(t, ctxAsync, db, 10, col.Name())
279288
require.NotEmpty(t, idTransaction)
280289

test/database_transaction_test.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ import (
3333

3434
func TestDatabaseTransaction(t *testing.T) {
3535
c := createClient(t, nil)
36-
skipBelowVersion(c, "3.2", t)
36+
// for disabling v8 tests
37+
skipBelowVersion(c, "4.0", t)
38+
3739
db := ensureDatabase(nil, c, "transaction_test", nil, t)
3840
defer func() {
3941
err := db.Remove(nil)

0 commit comments

Comments
 (0)