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
While v3 will be in a pre-release state for some time we'd like to backport everything that are needed for Laminar right now in the v2.
The text was updated successfully, but these errors were encountered:
Hi @cschloer,
have I missed something?
Sorry, something went wrong.
I've created a hook for [email protected] to support head/body checks for the same class:
[email protected]
def test_validate_wide_table_with_order_fields_issue_368(log): @check('custom-check', type='custom', context='body') class CustomCheck(object): def __init__(self, *args, **kwargs): pass def check_headers_hook(self, cells, sample): errors = [] errors.append(Error('custom-check-head')) return errors def check_row(self, cells): errors = [] errors.append(Error('custom-check-body')) return errors report = validate([['header'], ['value']], checks=['custom-check']) assert log(report) == [ (1, None, None, 'custom-check-head'), (1, None, None, 'custom-check-body'), ]
@cschloer,
I've created an issue for dataflows regarding goodtables - datahq/dataflows#142
dataflows
goodtables
No branches or pull requests
Overview
While v3 will be in a pre-release state for some time we'd like to backport everything that are needed for Laminar right now in the v2.
Tasks
The text was updated successfully, but these errors were encountered: