-
Notifications
You must be signed in to change notification settings - Fork 54
Test on all OSs #667
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
Test on all OSs #667
Conversation
✅ All tests successful. No failed tests were found. 📣 Thoughts on this report? Let Codecov know! | Powered by Codecov |
❌ 5 Tests Failed:
View the top 3 failed test(s) by shortest run time
To view more test analytics, go to the Test Analytics Dashboard |
This adds Windows and MacOS to our CI test matrix.
d7318cd
to
374cbac
Compare
412d612
to
d710977
Compare
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 think for the changes in folder_searcher to work with file finding you would need to make sure that the multipart_include_regex is also using as_posix()
, this happens here:
multipart_include_regex = globs_to_regex( |
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 think there's some required checks settings in the repo which is causing the CI to expect certain checks with diff names @thomasrockhu-codecov do you have perms to change those?
@joseph-sentry done |
This adds Windows and macOS to our CI test matrix.
It also changes quite a lot of internal functionality and tests to use
Path.as_posix()
which always prints paths with forward slashes.This was primarily done to make a ton of tests work on Windows, but IMO it is also a good idea to normalize paths internally to use forward slashes.
As #661 is primarily an issue on Windows, it would be nice to run tests on Windows as well.
And also macOS as well, why not. This should cover the major OSs that folks will be running in their own CI jobs that are using the CLI.