-
Notifications
You must be signed in to change notification settings - Fork 22
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:test_sys_marker is failing #11
Comments
After a bisect, I can confirm that this test was never passing. The test was added in 05cc463, but didn't actually start running until 65dc84b at which point it started to fail. Going back and checking out 05cc463 again and ensuring the test actually runs, I can see that it was failing there as well. Again, this could still be something about my environment, but digging through the code, I don't think that's the case. |
definitely should setup Github Actions for this one... but it does pass locally on a couple of my machines: $ bazel clean
INFO: Starting clean.
$ bazel test //test:test_sys_marker
INFO: Analyzed target //test:test_sys_marker (34 packages loaded, 1155 targets configured).
INFO: Found 1 test target...
Target //test:test_sys_marker up-to-date:
bazel-bin/test/test_sys_marker
INFO: Elapsed time: 6.712s, Critical Path: 3.86s
INFO: 13 processes: 9 internal, 4 darwin-sandbox.
INFO: Build completed successfully, 13 total actions
//test:test_sys_marker PASSED in 0.4s |
@AndrewGuenther is this still an issue? I wasn't able to repro it and CI builds pass as well |
The CI has this test disabled: https://github.com/soniaai/rules_poetry/blob/master/test/BUILD#L36 |
@njlr ah yes, I see. it looks like recent poetry versions stopped adding markers to the lock file, so they would need to be parsed out of the pyproject.toml. hum. |
I noticed while working on #9 that
//test:test_sys_marker
is failing on a clean checkout. Don't know if it's something about my environment or a legitimate regression. I can try to bisect and find when it may have started.As an aside, that might be a good reason to set up Github actions to run tests on push/PRs
The text was updated successfully, but these errors were encountered: