Diagnosing xunit failures in github action on ubuntu/macos (#3593)

* Just ubuntu

* windows & ubuntu

* commented test out

* uncommented test

* back to ubuntu

* deleted all Views tests

* deleted all Views tests

* VSTEST_DUMP_PATH

* Revert "deleted all Views tests"

This reverts commit 985f6143e6.

* Deleted first half Views tests

* Revert "Deleted first half Views tests"

This reverts commit bff2484cd7.

* Deleted 2nd half Views tests

* VSTEST_DUMP_PATH 2

* VSTEST_DUMP_PATH 3

* Revert "Deleted 2nd half Views tests"

This reverts commit b1dbd79dc9.

* Reapply "Deleted first half Views tests"

This reverts commit 3e8e890b03.

* Revert "Reapply "Deleted first half Views tests""

This reverts commit 731b50f392.

* ubuntu/mac

* removed dupe test

* removed dupe test

* removed statusbar tests

* Revert "removed statusbar tests"

This reverts commit 889813143b.

* Fixed shortcut tests

* windows, mac, linux

* fail-fast: false temporarily

* fail-fast: false temporarily

* trying stuff

* fixed quote error

* fixed sed issue

* Skip WindowDispose_CanFocusProblem

* Skip SynchronizationContext_CreateCopy

* mac

* mac

* mac

* mac

* mac

* gsed

* gsed

* gsed

* gsed

* finally fixed! Hopefully.
This commit is contained in:
Tig
2024-07-08 18:29:00 -06:00
committed by GitHub
parent 242cab0c00
commit 85a0ad1654
7 changed files with 68 additions and 79 deletions

View File

@@ -61,7 +61,6 @@ public class KeyTests
[InlineData ((KeyCode)'英', '英')]
[InlineData ((KeyCode)'{', '{')]
[InlineData ((KeyCode)'\'', '\'')]
[InlineData ((KeyCode)'\r', '\r')]
[InlineData ((KeyCode)'ó', 'ó')]
[InlineData ((KeyCode)'ó' | KeyCode.ShiftMask, 'ó')]
[InlineData ((KeyCode)'Ó', 'Ó')]
@@ -111,9 +110,6 @@ public class KeyTests
[InlineData ('!', (KeyCode)'!')]
[InlineData ('\r', KeyCode.Enter)]
[InlineData ('\t', KeyCode.Tab)]
#pragma warning disable xUnit1025 // InlineData should be unique within the Theory it belongs to
[InlineData ('\r', (KeyCode)13)]
#pragma warning restore xUnit1025 // InlineData should be unique within the Theory it belongs to
[InlineData ('\n', (KeyCode)10)]
[InlineData ('ó', (KeyCode)'ó')]
[InlineData ('Ó', (KeyCode)'Ó')]