diff options
| author | Anthon van der Neut <anthon@mnt.org> | 2017-07-12 12:13:34 +0200 |
|---|---|---|
| committer | Anthon van der Neut <anthon@mnt.org> | 2017-07-12 12:13:34 +0200 |
| commit | 2ea4de43fe2e0160e27b605f2c65f33c5a2083d7 (patch) | |
| tree | ddd268394e9fa05011585fd326cb4f635f0510a1 /_test/lib/test_structure.py | |
| parent | ae5b5638efc9f20c027aac28f52dbfe0fc955998 (diff) | |
| download | ruamel.yaml-2ea4de43fe2e0160e27b605f2c65f33c5a2083d7.tar.gz | |
update to flake8==3.3.0 with --ignore F405
Diffstat (limited to '_test/lib/test_structure.py')
| -rw-r--r-- | _test/lib/test_structure.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/_test/lib/test_structure.py b/_test/lib/test_structure.py index a23dac8..4d04b11 100644 --- a/_test/lib/test_structure.py +++ b/_test/lib/test_structure.py @@ -61,6 +61,7 @@ def test_structure(data_filename, structure_filename, verbose=False): print("NODES2:") pprint.pprint(nodes2) + test_structure.unittest = ['.data', '.structure'] @@ -93,6 +94,7 @@ def test_parser(data_filename, canonical_filename, verbose=False): print("EVENTS2:") pprint.pprint(events2) + test_parser.unittest = ['.data', '.canonical'] @@ -112,6 +114,7 @@ def test_parser_on_canonical(canonical_filename, verbose=False): print("EVENTS2:") pprint.pprint(events2) + test_parser_on_canonical.unittest = ['.canonical'] @@ -148,6 +151,7 @@ def test_composer(data_filename, canonical_filename, verbose=False): print("NODES2:") pprint.pprint(nodes2) + test_composer.unittest = ['.data', '.canonical'] @@ -208,6 +212,7 @@ def test_constructor(data_filename, canonical_filename, verbose=False): print("NATIVE2:") pprint.pprint(native2) + test_constructor.unittest = ['.data', '.canonical'] if __name__ == '__main__': |
