-
-
Notifications
You must be signed in to change notification settings - Fork 62
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
Class vocab #412
Class vocab #412
Conversation
Uses the vocabulary to map a short name like "CommandLineTool" to the fully qualified (avro) class name "w3id.org.cwl.cwl.CommandLineTool"
Codecov Report
@@ Coverage Diff @@
## main #412 +/- ##
==========================================
+ Coverage 78.45% 78.54% +0.09%
==========================================
Files 18 18
Lines 3245 3254 +9
Branches 876 879 +3
==========================================
+ Hits 2546 2556 +10
+ Misses 460 459 -1
Partials 239 239
Continue to review full report at Codecov.
|
Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz@curii.com>
@@ -98,7 +98,7 @@ | |||
|
|||
setup( | |||
name="schema-salad", | |||
version="8.0", # update the VERSION prefix in the Makefile as well 🙂 | |||
version="8.1", # update the VERSION prefix in the Makefile as well 🙂 |
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.
As the comment says, please update the VERSION prefix in the Makefile as well
!
@@ -87,6 +127,9 @@ def validate_ex( | |||
if not foreign_properties: | |||
foreign_properties = set() | |||
|
|||
if vocab is None: | |||
raise Exception("vocab must be provided") |
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.
Then why is vocab
typed as Optional
?
No description provided.