Skip to content

Commit 70268d0

Browse files
test backbeat sdk v3
1 parent 4ea124c commit 70268d0

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

.github/workflows/end2end.yaml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -396,11 +396,15 @@ jobs:
396396
- uses: actions/setup-node@v4
397397
with:
398398
node-version: '20'
399-
cache: yarn
400-
cache-dependency-path: tests/ctst/yarn.lock
401399
- name: Install ctst test dependencies
402400
working-directory: tests/ctst
403-
run: yarn install
401+
run: |
402+
yarn install --frozen-lockfile || {
403+
echo "Yarn install failed, cleaning cache and retrying..."
404+
yarn cache clean
405+
rm -rf node_modules ~/.cache/yarn
406+
yarn install --frozen-lockfile
407+
}
404408
- name: Lint ctst tests
405409
working-directory: tests/ctst
406410
run: yarn lint

solution/deps.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ backbeat:
66
dashboard: backbeat/backbeat-dashboards
77
image: backbeat
88
policy: backbeat/backbeat-policies
9-
tag: 9.1.145
9+
tag: 9.1.148
1010
envsubst: BACKBEAT_TAG
1111
busybox:
1212
image: busybox

tests/ctst/common/common.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ When('i restore object {string} for {int} days', async function (this: Zenko, ob
272272

273273
// wait for object to transition to a location or get restored from it
274274
Then('object {string} should be {string} and have the storage class {string}',
275-
{ timeout: 130000 }, verifyObjectLocation);
275+
{ timeout: 200000 }, verifyObjectLocation);
276276

277277
When('i delete object {string}', async function (this: Zenko, objectName: string) {
278278
const objName = getObjectNameWithBackendFlakiness.call(this, objectName) || this.getSaved<string>('objectName');

0 commit comments

Comments
 (0)