summaryrefslogtreecommitdiff
path: root/tests/test.py
diff options
context:
space:
mode:
authorMitch Garnaat <mitch@garnaat.com>2012-05-15 18:59:46 -0700
committerMitch Garnaat <mitch@garnaat.com>2012-05-15 18:59:46 -0700
commit1aa1133e8502ea6c95e49ac34681569df5ace46b (patch)
treea25397b20d7d409131ccfbfce5d4dca23d7e52a4 /tests/test.py
parent911f42b97fdccbc55e160ec323df0cad6fe64c6b (diff)
parent6588ea270bfc9e0bb4d17263b72ee8b5255545c5 (diff)
downloadboto-2.4.0.tar.gz
Merge branch 'release-2.4.0'2.4.0
Diffstat (limited to 'tests/test.py')
-rwxr-xr-xtests/test.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/test.py b/tests/test.py
index e9af4404..43c58456 100755
--- a/tests/test.py
+++ b/tests/test.py
@@ -40,6 +40,8 @@ from s3.test_multidelete import S3MultiDeleteTest
from s3.test_multipart import S3MultiPartUploadTest
from s3.test_gsconnection import GSConnectionTest
from s3.test_https_cert_validation import CertValidationTest
+from s3.test_resumable_downloads import ResumableDownloadTests
+from s3.test_resumable_uploads import ResumableUploadTests
from ec2.test_connection import EC2ConnectionTest
from ec2.elb.test_connection import ELBConnectionTest
from ec2.cloudwatch.test_connection import CloudWatchConnectionTest
@@ -49,6 +51,8 @@ from cloudfront.test_signed_urls import CloudfrontSignedUrlsTest
from dynamodb.test_layer1 import DynamoDBLayer1Test
from dynamodb.test_layer2 import DynamoDBLayer2Test
from sts.test_session_token import SessionTokenTest
+from swf.test_layer1 import SimpleWorkflowLayer1Test
+from swf.test_layer1_workflow_execution import SwfL1WorkflowExecutionTest
def usage():
print "test.py [-t testsuite] [-v verbosity]"
@@ -109,6 +113,8 @@ def suite(testsuite="all"):
tests.addTest(unittest.makeSuite(S3MFATest))
elif testsuite == "gs":
tests.addTest(unittest.makeSuite(GSConnectionTest))
+ tests.addTest(unittest.makeSuite(ResumableDownloadTests))
+ tests.addTest(unittest.makeSuite(ResumableUploadTests))
elif testsuite == "sqs":
tests.addTest(unittest.makeSuite(SQSConnectionTest))
elif testsuite == "ec2":
@@ -131,6 +137,12 @@ def suite(testsuite="all"):
tests.addTest(unittest.makeSuite(DynamoDBLayer2Test))
elif testsuite == "sts":
tests.addTest(unittest.makeSuite(SessionTokenTest))
+ elif testsuite == "swf":
+ tests.addTest(unittest.makeSuite(SimpleWorkflowLayer1Test))
+ tests.addTest(unittest.makeSuite(SwfL1WorkflowExecutionTest))
+ elif testsuite == "swfL1":
+ tests.addTest(unittest.makeSuite(SimpleWorkflowLayer1Test))
+ tests.addTest(unittest.makeSuite(SwfL1WorkflowExecutionTest))
else:
raise ValueError("Invalid choice.")
return tests