File: python3-tests

package info (click to toggle)
microsoft-authentication-extensions-for-python 0.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 208 kB
  • sloc: python: 975; sh: 9; makefile: 5
file content (13 lines) | stat: -rwxr-xr-x 342 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

set -eu
set -o pipefail

rm -rf "${AUTOPKGTEST_TMP}/tests"
cp -r tests "${AUTOPKGTEST_TMP}"

cd "${AUTOPKGTEST_TMP}"
for p in $(py3versions -s); do
    "${p}" -m pytest -v --deselect=tests/test_persistence.py::test_libsecret_persistence \
        --deselect=tests/test_persistence.py::test_nonexistent_libsecret_persistence
done