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

Add some more complex testing scenarios #32

Merged
merged 30 commits into from
Aug 21, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
name
mattleibow committed Aug 21, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 3f8151a0e57da5dd86e983ee8c03e74c9caca601
2 changes: 1 addition & 1 deletion .github/workflows/test-xharness-ios.yml
Original file line number Diff line number Diff line change
@@ -37,7 +37,7 @@ jobs:
--target ios-simulator-64 \
--timeout="00:03:00" \
--launch-timeout=00:06:00 \
--app sample/test/DeviceTestingKitApp.DeviceTests/bin/${{ env.TEST_CONFIGURATION }}/${{ env.TEST_TARGET_FRAMEWORK }}/${{ env.TEST_RUNTIME_IDENTIFIER }}/DeviceTestingKitApp.DeviceTests.app \
--app sample/test/DeviceTestingKitApp.DeviceTests/bin/${{ env.TEST_CONFIGURATION }}/${{ env.TEST_TARGET_FRAMEWORK }}/${{ env.TEST_RUNTIME_IDENTIFIER }}/DeviceTestingKitAppDeviceTests.app \
--output-directory artifacts \
&& code=0 && break || code=$? && sleep 15
done
2 changes: 1 addition & 1 deletion .github/workflows/test-xharness-maccatalyst.yml
Original file line number Diff line number Diff line change
@@ -35,7 +35,7 @@ jobs:
--target maccatalyst \
--timeout="00:02:00" \
--launch-timeout=00:06:00 \
--app sample/test/DeviceTestingKitApp.DeviceTests/bin/${{ env.TEST_CONFIGURATION }}/${{ env.TEST_TARGET_FRAMEWORK }}/${{ env.TEST_RUNTIME_IDENTIFIER }}/DeviceTestingKitApp.DeviceTests.app \
--app sample/test/DeviceTestingKitApp.DeviceTests/bin/${{ env.TEST_CONFIGURATION }}/${{ env.TEST_TARGET_FRAMEWORK }}/${{ env.TEST_RUNTIME_IDENTIFIER }}/DeviceTestingKitAppDeviceTests.app \
--output-directory artifacts
- name: Upload Artifacts
uses: actions/upload-artifact@v1
Original file line number Diff line number Diff line change
@@ -6,6 +6,7 @@
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net8.0-windows10.0.19041.0</TargetFrameworks>
<OutputType>Exe</OutputType>
<RootNamespace>DeviceTestingKitApp.DeviceTests</RootNamespace>
<AssemblyName>DeviceTestingKitAppDeviceTests</AssemblyName>
<UseMaui>true</UseMaui>
<SingleProject>true</SingleProject>
<DefineConstants Condition="'$(CI)' != 'true'">$(DefineConstants);INCLUDE_FAILING_TESTS</DefineConstants>
Loading