Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix failed test #797

Open
wants to merge 12 commits into
base: main
Choose a base branch
from
2 changes: 1 addition & 1 deletion .github/workflows/screenshot-comparison.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ permissions: { }

jobs:
screenshot-comparison:
runs-on: ubuntu-latest
runs-on: macos-latest
timeout-minutes: 60

permissions:
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ permissions: { }

jobs:
unit-test:
runs-on: ubuntu-latest
runs-on: macos-latest
timeout-minutes: 60

permissions:
Expand All @@ -33,7 +33,12 @@ jobs:
name: event-payload
path: ${{ github.event_path }}

- run: ./gradlew testDevDebugUnitTest testDebugUnitTest --stacktrace
- run: ./gradlew \
testDevDebugUnitTest \
testDebugUnitTest \
:core:data:iosSimulatorArm64Test \
:core:model:iosSimulatorArm64Test \
--stacktrace

# Saving cost
# - run: ./gradlew koverHtmlReportDevDebug --stacktrace
Expand Down
Loading