Skip to content

Commit

Permalink
Merge branch 'master' into no-suppress-deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
alxndrsn committed Dec 10, 2024
2 parents 6b96ecf + 7bb0360 commit a05283c
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 10 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/oidc-e2e.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: OIDC e2e tests

on: push
on:
push:
pull_request:

env:
DEBUG: pw:api
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/oidc-integration.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: OIDC integration tests

on: push
on:
push:
pull_request:

jobs:
oidc-integration-test:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/s3-e2e.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: S3 E2E Tests

on: push
on:
push:
pull_request:

jobs:
s3-e2e:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/standard-e2e.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Standard E2E Tests

on: push
on:
push:
pull_request:

env:
LOG_LEVEL: DEBUG
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/standard-suite.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Full Standard Test Suite

on: push
on:
push:
pull_request:

jobs:
standard-tests:
Expand Down
6 changes: 1 addition & 5 deletions test/e2e/s3/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -247,11 +247,7 @@ describe('s3 support', () => {
// then
// N.B. These errors are as observed, and demonstrate that the root error is shared
// with the user. They are not something to try to retain if implementation changes.
await expectRejectionFrom(uploading, new RegExp(
'Command failed: exec node lib/bin/s3 upload-pending\n' +
'(AggregateError.*)?Error: (connect ECONNREFUSED|read ECONNRESET|socket hang up|write EPIPE)',
's',
));
await expectRejectionFrom(uploading, /(AggregateError.*)?Error: (connect ECONNREFUSED|read ECONNRESET|socket hang up|write EPIPE)/);
// and
await assertNewStatuses({ uploaded: 1, failed: 1 });
});
Expand Down

0 comments on commit a05283c

Please sign in to comment.