Skip to content

Commit

Permalink
test failures
Browse files Browse the repository at this point in the history
  • Loading branch information
albho committed Nov 14, 2024
1 parent ad04009 commit 818e2d8
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/android-browserstack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
run: ./copy_test_resources.sh

- name: Inject AccessKey
run: echo pvTestingAccessKey="${{secrets.PV_VALID_ACCESS_KEY}}" >> local.properties
run: echo pvTestingAccessKey="123abc" >> local.properties

- name: Inject Android keystore variables
run: |
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
run: ./copy_test_resources.sh

- name: Inject AccessKey
run: echo pvTestingAccessKey="${{secrets.PV_VALID_ACCESS_KEY}}" >> local.properties
run: echo pvTestingAccessKey="123abc" >> local.properties

- name: Inject Android keystore variables
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/android-perf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
device: [ android-perf ]
include:
- device: android-perf
performanceThresholdSec: 0.005
performanceThresholdSec: 0 # 0.005

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ios-browserstack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
run: mkdir ddp

- name: Inject AccessKey
run: sed -i '.bak' 's:{TESTING_ACCESS_KEY_HERE}:${{secrets.PV_VALID_ACCESS_KEY}}:'
run: sed -i '.bak' 's:{TESTING_ACCESS_KEY_HERE}:123abc:'
CobraAppTestUITests/CobraAppTestUITests.swift

- name: XCode Build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ios-perf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
device: [ ios-perf ]
include:
- device: ios-perf
performanceThresholdSec: 0.001
performanceThresholdSec: 0 # 0.001

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion script/automation/browserstack.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def main(args: argparse.Namespace) -> None:
)
if (build_response is not None and 'message' in build_response.json() and '[BROWSERSTACK_ALL_PARALLELS_IN_USE]'
in build_response.json()['message']):
print('Parallel threads limit reached. Waiting...')
print('Parallel threads limit reached. Waiting...', flush=True)
time.sleep(60)
else:
break
Expand Down

0 comments on commit 818e2d8

Please sign in to comment.