From e11a1f773d8795dd9bd9819aaf229c6598e22ca6 Mon Sep 17 00:00:00 2001 From: Vasu Kulkarni Date: Tue, 19 Sep 2017 17:09:08 -0700 Subject: [PATCH] qa/tests: skip test that use public bucket landsat-pds from AWS Signed-off-by: Vasu Kulkarni --- qa/tasks/s3a_hadoop.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/qa/tasks/s3a_hadoop.py b/qa/tasks/s3a_hadoop.py index b969a36a8aa..c01fe1dda00 100644 --- a/qa/tasks/s3a_hadoop.py +++ b/qa/tasks/s3a_hadoop.py @@ -82,7 +82,9 @@ def task(ctx, config): fix_rgw_config(rgw_node, dnsmasq_name) setup_user_bucket(rgw_node, dnsmasq_name, access_key, secret_key, bucket_name, testdir) if hadoop_ver.startswith('2.8'): - test_options = '-Dit.test=ITestS3A* -Dparallel-tests -Dscale -Dfs.s3a.scale.test.huge.filesize=128M verify' + # test all ITtests but skip AWS test using public bucket landsat-pds + # which is not available from within this test + test_options = '-Dit.test=ITestS3A* -Dit.test=\!ITestS3AAWSCredentialsProvider* -Dparallel-tests -Dscale -Dfs.s3a.scale.test.huge.filesize=128M verify' else: test_options = 'test -Dtest=S3a*,TestS3A*' try: -- 2.39.5