Skip to content
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

allow for named custom array types #919

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

Conversation

mr-c
Copy link
Member

@mr-c mr-c commented Mar 13, 2025

Necessary for cwltool to be able to parse and run

https://github.com/rabix/sbpack/blob/ebd5fbca8c6aec03015228f3e35ab37f0e208c33/tests/remote-cwl/wf1.cwl

which includes

https://github.com/rabix/sbpack/blob/ebd5fbca8c6aec03015228f3e35ab37f0e208c33/tests/types/testtypes.yml#L1-L4

- name: my_boolean_array
  type: array
  items: boolean
  label: "A boolean array"
  • tests, but it is unclear how to do so without running cwltool

@mr-c mr-c requested review from GlassOfWhiskey and tetron March 13, 2025 18:24
@@ -740,6 +781,11 @@ def make_avsc_object(json_data: JsonDataType, names: Optional[Names] = None) ->
if atype in VALID_TYPES:
if atype == "array":
items = json_data.get("items")
if "name" in json_data and json_data["name"]:
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Checking that json_data["name"] is not None nor that it is an empty string is a requirement, as otherwise the metaschema fails to load (for some reason the ArraySchemas there try to load with empty name strings).

Copy link

codecov bot commented Mar 13, 2025

Codecov Report

Attention: Patch coverage is 29.62963% with 19 lines in your changes missing coverage. Please review.

Project coverage is 83.01%. Comparing base (f13d30e) to head (041961e).

Files with missing lines Patch % Lines
schema_salad/avro/schema.py 20.83% 18 Missing and 1 partial ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##             main     #919      +/-   ##
==========================================
- Coverage   83.30%   83.01%   -0.29%     
==========================================
  Files          22       22              
  Lines        4948     4970      +22     
  Branches     1185     1189       +4     
==========================================
+ Hits         4122     4126       +4     
- Misses        548      565      +17     
- Partials      278      279       +1     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@mr-c mr-c force-pushed the named_custom_array_types branch from 53deb51 to 5c0fed8 Compare March 13, 2025 19:10
@mr-c mr-c force-pushed the named_custom_array_types branch from 5c0fed8 to 041961e Compare March 17, 2025 09:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant