1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
#!/bin/sh
set -e
cp -r test ${AUTOPKGTEST_TMP}
for py in $(py3versions --supported); do
$py -m pytest -v test -k "\
not test_cwd and \
not test_iam and \
not test_gzip_compression_external and \
not test_retry_config_external and \
not test_files_dict and \
not test_files_duplicate_parts and \
not test_configure_service and \
not test_request_token_auth_default and \
not test_request_token_auth_in_ctor and \
not test_get_token_success and \
not test_request_token_success and \
not test_authenticate_success and \
not test_authenticate_fail_iam and \
not test_client_id_and_secret and \
not test_setter_methods and \
not test_retrieve_cr_token_success and \
not test_get_authenticator_from_credential_file and \
not test_read_external_sources_2 and \
not test_files_list\
"
#Disabled tests needing upstream missing env files & external server connection.
done
|