We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
super-classes
root-instances
I would like to be able to use something like
root-instances = [ { super-classes = ['\.TypeError .*'] } ]
to allow me to have TypeError-constrained instances without having to individually add the instances.
TypeError
I’m imagining the super-classes list being &&ed together, so that all of the listed constraints must exist for it to be allowed.
&&
TypeError is the only use case I can think of for this, but my guess is that something more general is the same level of effort.
The text was updated successfully, but these errors were encountered:
I just realized I can match this with
root-instances = [ {instance = '''^(.*TypeError .*) => .*'''}, ]
Sorry, something went wrong.
No branches or pull requests
I would like to be able to use something like
to allow me to have
TypeError
-constrained instances without having to individually add the instances.I’m imagining the
super-classes
list being&&
ed together, so that all of the listed constraints must exist for it to be allowed.TypeError
is the only use case I can think of for this, but my guess is that something more general is the same level of effort.The text was updated successfully, but these errors were encountered: