-
-
Notifications
You must be signed in to change notification settings - Fork 18
Use yaml.dump over old dump command, stripped double .cwl, and fixed import issues #287
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
base: main
Are you sure you want to change the base?
Use yaml.dump over old dump command, stripped double .cwl, and fixed import issues #287
Conversation
7584f8a
to
c903624
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #287 +/- ##
==========================================
+ Coverage 34.33% 34.53% +0.20%
==========================================
Files 30 30
Lines 35362 35375 +13
Branches 9553 9555 +2
==========================================
+ Hits 12142 12218 +76
+ Misses 20327 20269 -58
+ Partials 2893 2888 -5 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
…imports Added cwlformat to requirements (needed for --pretty parameter), Co-authored-by: Michael R. Crusoe <crusoe@debian.org>
a2aa6eb
to
4736b18
Compare
4736b18
to
c9ac6c3
Compare
@@ -5,3 +5,4 @@ requests | |||
schema-salad >= 8.8.20250205075315,<9 | |||
ruamel.yaml >= 0.17.6, < 0.19 | |||
typing_extensions;python_version<'3.10' | |||
cwlformat >= 2022.2.18 |
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.
No, this is brought in the the extra pretty
; we don't want to require all users of cwl-utils
to install cwlformat
.
cwlformat >= 2022.2.18 |
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.
Can you elaborate on this please? It's been a while since I actually put in the PR.
Why don't we want cwlformat as a requirement?
What do you mean by the extra 'pretty'?
Added cwlformat to requirements (needed for --pretty parameter),
Resolves #285
Resolves #286