-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Tests: Skip failing tests on windows #8210
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
Tests: Skip failing tests on windows #8210
Conversation
The Pipelines do not currently test on windows platform. To get to a point where we can execute tests on windows, we will first disable the failing tests and later enable them as the pipeline is setup to ensure we do not regress in behaviour. related to swiftlang#8121 rdar://139977454
27afed4
to
09a6835
Compare
…hich does not compile on Windows
…APITests.testLoadPackage to have windows path
5e027e0
to
293fc93
Compare
@@ -28,7 +28,23 @@ import struct TSCBasic.ByteString | |||
import struct TSCUtility.Version | |||
|
|||
final class WorkspaceTests: XCTestCase { | |||
// override func setUpWithError() throws { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
chore (blocking): remove commented code
…on_darwin logic outside the run_bootstrap call
…139977454_swift_test_on_windows
@swift-ci please test self hosted windows |
…139977454_swift_test_on_windows
@swift-ci please test self hosted windows |
1 similar comment
@swift-ci please test self hosted windows |
@swift-ci please test |
@swift-ci please test windows |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems to be in a much worse state than I remember 🤔
This might be true. I did not actually investigate all the tests failure. My goal was to get a pipeline up and running with currently passing tests. The next step will be to re-enable the automated tests on Windows. I know a bunch of tests failure have to do with "path" issues, so fixing that will likely re-enable alot of tests (assuming the are no other test failure). |
The Pipelines do not currently test on windows platform. To get to a point where we can execute tests on windows, we will first disable the failing tests and later enable them as the pipeline is setup to ensure we do not regress in behaviour.
related to #8121
rdar://139977454
Motivation:
In preparation for #8176 , disable failing Windows tests.
Modifications:
Mark some tests as Skipped on Windows
Fixes #8176