We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
it looks like Swift Testing is not working with Android:
/home/runner/work/swift-png/swift-png/Sources/LZ77Tests/Bitstreams.swift:4:8: error: no such module 'Testing' 2 | @testable 3 | import LZ77 4 | import Testing | `- error: no such module 'Testing' 5 | 6 | @Suite
this is happening even though run-tests: false is specified in the workflow.
run-tests: false
@marcprux any idea what’s going on here?
The text was updated successfully, but these errors were encountered:
Should set build-tests: false. The Testing module is not yet available for Android … it is WIP.
build-tests: false
Testing
Sorry, something went wrong.
Also, you can guard for it in a future-proof way in your tests with:
#if canImport(Testing) import Testing @Suite… #endif
That way, once Testing is available for Android, it will just fall into place.
No branches or pull requests
it looks like Swift Testing is not working with Android:
this is happening even though
run-tests: false
is specified in the workflow.@marcprux any idea what’s going on here?
The text was updated successfully, but these errors were encountered: