-
Notifications
You must be signed in to change notification settings - Fork 44
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
Added Concurrency Testing #160
Conversation
@@ -12,6 +12,7 @@ import WorkflowTesting | |||
import XCTest | |||
@testable import WorkflowCombineTesting | |||
|
|||
@available(iOS 13.0, macOS 10.15, *) |
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.
why were all these availability annotations needed?
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.
I added the testing target for those to the package and because the package is iOS 12+ right now. You can't set minimum OS targets for products only packages unfortunately.
# s.test_spec 'WorkflowConcurrencyTestingTests' do |test_spec| | ||
# test_spec.requires_app_host = true | ||
# test_spec.source_files = 'WorkflowConcurrency/TestingTests/**/*.swift' | ||
# test_spec.framework = 'XCTest' | ||
# test_spec.dependency 'WorkflowTesting' | ||
# test_spec.dependency 'WorkflowConcurrencyTesting' | ||
# end |
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.
Do we need to add this if it's disabled?
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.
It's added so when we switch the minimum OS to higher than 12 we just uncomment so we don't forget to add that target.
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.
lgtm. just had one thought about unifying naming conventions
Checklist