File: upstream

package info (click to toggle)
python-ibm-cloud-sdk-core 3.16.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 528 kB
  • sloc: python: 3,888; makefile: 28; sh: 28
file content (31 lines) | stat: -rw-r--r-- 998 bytes parent folder | download
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
31
#!/bin/sh

set -e

cp -r test ${AUTOPKGTEST_TMP}
cd ${AUTOPKGTEST_TMP}
for p in $(py3versions -s); do
    $p -m pytest 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_request_token_auth_in_ctor_with_scope 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_get_authenticator_from_credential_file_scope and \
    not test_read_external_sources_2 and \
    not test_files_list\
    "
done