-
Notifications
You must be signed in to change notification settings - Fork 696
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
Feature request: assume type: exitcode-stdio-1.0
by default
#7459
Comments
I agree. Unless anybody objects, let's do it (in both places). |
Could |
Yes, that's very much needed. |
Test and benchmark components have a required field
type
.For tests there are two possible values: either
type: exitcode-stdio-1.0
ortype: detailed-0.9
. We are fortunate enough to have nice testing frameworks, so developers rarely resort todetailed-0.9
(there are only 50 Hackage packages, mostly old ones).For benchmarks there is actually only one possible value:
type: exitcode-stdio-1.0
- but the field is nevertheless required! This is just a nonsensical friction, which means that I cannot changebenchmark
toexecutable
or vice versa without touching other lines.I suggest we assume
type: exitcode-stdio-1.0
by default, so that this field is no longer required.The text was updated successfully, but these errors were encountered: