File: upstream

package info (click to toggle)
python-ibm-cloud-sdk-core 3.24.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 944 kB
  • sloc: python: 5,750; makefile: 40; xml: 7; sh: 7
file content (12 lines) | stat: -rw-r--r-- 238 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

set -e

cp -r pyproject.toml resources test ${AUTOPKGTEST_TMP}

for py in $(py3versions --supported); do
    $py -m pytest -v test -k "\
    not test_tls_v1.2\
    "
    #Disabled tests needing external server connection.
done