-
Notifications
You must be signed in to change notification settings - Fork 25
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
style: format with Ruff #180
Conversation
pyproject.toml
Outdated
@@ -93,3 +94,7 @@ markers = [ | |||
"network: tests that require network connectivity", | |||
"slow: slow tests that should be run infrequently", | |||
] | |||
|
|||
[tool.ruff] | |||
src = ["src", "test"] |
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.
src = ["src", "test"] | |
src = ["src", "tests"] |
on: | ||
push: | ||
tags: | ||
- '[0-9]+.[0-9]+.[0-9]+' |
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.
Not related to this PR, but wanted to comment that this line is not in bioutils repo
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 may have already said this somewhere else (thought i had) but in general, everything is pretty out of sync w/ the template. Not sure if that's something we want to tackle iteratively or do a single "clean sweep"/reset at some point.
Adds
ruff
formatting.eutils
didn't have some of the other biocommons QC stuff (github actions, precommit) so adds a minimal version of each as well.