Skip to content

Commit a832f08

Browse files
chore: remove exception for auth integ tests (#4372)
1 parent 05f0fc8 commit a832f08

File tree

5 files changed

+10
-15
lines changed

5 files changed

+10
-15
lines changed

.github/workflows/e2e_android.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,9 @@ jobs:
3232
channel:
3333
- beta
3434
- stable
35-
# Skips e2e tests against beta on PRs, except for auth
36-
# Todo(Jordan-Nelson): Update tests to skip beta for auth once flutter 3.16.0 becomes stable.
35+
# Skips e2e tests against beta on PRs
3736
exclude:
38-
- channel: ${{ (github.event_name == 'pull_request' && inputs.package-name != 'amplify_auth_cognito_example' && 'beta') || 'NONE' }}
37+
- channel: ${{ (github.event_name == 'pull_request' && 'beta') || 'NONE' }}
3938

4039
steps:
4140
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # 3.5.3

.github/workflows/e2e_ios.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,9 @@ jobs:
2525
channel:
2626
- beta
2727
- stable
28-
# Skips e2e tests against beta on PRs, except for auth
29-
# Todo(Jordan-Nelson): Update tests to skip beta for auth once flutter 3.16.0 becomes stable.
28+
# Skips e2e tests against beta on PRs
3029
exclude:
31-
- channel: ${{ (github.event_name == 'pull_request' && inputs.package-name != 'amplify_auth_cognito_example' && 'beta') || 'NONE' }}
30+
- channel: ${{ (github.event_name == 'pull_request' && 'beta') || 'NONE' }}
3231

3332
# These permissions are needed to interact with GitHub's OIDC Token endpoint.
3433
permissions:

.github/workflows/e2e_linux.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,9 @@ jobs:
2626
channel:
2727
- beta
2828
- stable
29-
# Skips e2e tests against beta on PRs, except for auth
30-
# Todo(Jordan-Nelson): Update tests to skip beta for auth once flutter 3.16.0 becomes stable.
29+
# Skips e2e tests against beta on PRs
3130
exclude:
32-
- channel: ${{ (github.event_name == 'pull_request' && inputs.package-name != 'amplify_auth_cognito_example' && 'beta') || 'NONE' }}
31+
- channel: ${{ (github.event_name == 'pull_request' && 'beta') || 'NONE' }}
3332

3433
# These permissions are needed to interact with GitHub's OIDC Token endpoint.
3534
permissions:

.github/workflows/e2e_web.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,9 @@ jobs:
2626
channel:
2727
- beta
2828
- stable
29-
# Skips e2e tests against beta on PRs, except for auth
30-
# Todo(Jordan-Nelson): Update tests to skip beta for auth once flutter 3.16.0 becomes stable.
29+
# Skips e2e tests against beta on PRs
3130
exclude:
32-
- channel: ${{ (github.event_name == 'pull_request' && inputs.package-name != 'amplify_auth_cognito_example' && 'beta') || 'NONE' }}
31+
- channel: ${{ (github.event_name == 'pull_request' && 'beta') || 'NONE' }}
3332

3433
# These permissions are needed to interact with GitHub's OIDC Token endpoint.
3534
permissions:

.github/workflows/e2e_windows.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,9 @@ jobs:
2626
channel:
2727
- beta
2828
- stable
29-
# Skips e2e tests against beta on PRs, except for auth
30-
# Todo(Jordan-Nelson): Update tests to skip beta for auth once flutter 3.16.0 becomes stable.
29+
# Skips e2e tests against beta on PRs
3130
exclude:
32-
- channel: ${{ (github.event_name == 'pull_request' && inputs.package-name != 'amplify_auth_cognito_example' && 'beta') || 'NONE' }}
31+
- channel: ${{ (github.event_name == 'pull_request' && 'beta') || 'NONE' }}
3332

3433
# These permissions are needed to interact with GitHub's OIDC Token endpoint.
3534
permissions:

0 commit comments

Comments
 (0)