We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96a932c commit 9fce550Copy full SHA for 9fce550
1 file changed
tests/test_fuzzing.py
@@ -190,7 +190,7 @@ def test_update(data):
190
parsed = load(as_document(example, schema).as_yaml(), schema)
191
print("\nRound-trip parsed .data:\n", parsed.data)
192
193
- test_data_conforms_to_schema()
194
- test_manifest_can_be_created()
195
- test_check()
196
- test_update()
+ test_data_conforms_to_schema() # pylint: disable=no-value-for-parameter
+ test_manifest_can_be_created() # pylint: disable=no-value-for-parameter
+ test_check() # pylint: disable=no-value-for-parameter
+ test_update() # pylint: disable=no-value-for-parameter
0 commit comments