diff --git a/Tests/README b/Tests/README index 9efff9a66..52027727f 100644 --- a/Tests/README +++ b/Tests/README @@ -10,7 +10,9 @@ setup runnable scripts ---------------- -webdav-sync.py +all.py - run all scripts below at once +webdavsync.py +davacl.py other scripts ------------- diff --git a/Tests/all.py b/Tests/all.py new file mode 100755 index 000000000..853f43476 --- /dev/null +++ b/Tests/all.py @@ -0,0 +1,9 @@ +#!/usr/bin/python + +import unittest + +from davacl import * +from webdavsync import * + +if __name__ == "__main__": + unittest.main()