aboutsummaryrefslogtreecommitdiff
path: root/tests/lib/test_all.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/test_all.py')
-rw-r--r--tests/lib/test_all.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/lib/test_all.py b/tests/lib/test_all.py
new file mode 100644
index 0000000..72a5067
--- /dev/null
+++ b/tests/lib/test_all.py
@@ -0,0 +1,15 @@
+
+import sys, yaml, test_appliance
+
+def main(args=None):
+ collections = []
+ import test_yaml
+ collections.append(test_yaml)
+ if yaml.__with_libyaml__:
+ import test_yaml_ext
+ collections.append(test_yaml_ext)
+ return test_appliance.run(collections, args)
+
+if __name__ == '__main__':
+ main()
+