summaryrefslogtreecommitdiff
path: root/_test/lib/test_all.py
diff options
context:
space:
mode:
Diffstat (limited to '_test/lib/test_all.py')
-rw-r--r--_test/lib/test_all.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/_test/lib/test_all.py b/_test/lib/test_all.py
index faf2cfb..57485fc 100644
--- a/_test/lib/test_all.py
+++ b/_test/lib/test_all.py
@@ -1,17 +1,17 @@
-import sys
+import sys # NOQA
import ruamel.yaml
import test_appliance
+
def main(args=None):
collections = []
import test_yaml
collections.append(test_yaml)
- if yaml.__with_libyaml__:
+ if ruamel.yaml.__with_libyaml__:
import test_yaml_ext
collections.append(test_yaml_ext)
test_appliance.run(collections, args)
if __name__ == '__main__':
main()
-