File: gnome-keyring

package info (click to toggle)
python-secretstorage 3.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 252 kB
  • sloc: python: 764; makefile: 11; sh: 8
file content (12 lines) | stat: -rwxr-xr-x 257 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

set -eu
cp -r tests "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP"

export XDG_RUNTIME_DIR="$AUTOPKGTEST_TMP"

for python in $(py3versions -s); do
    echo "Testing with $python..."
    dbus-run-session -- $python -m unittest discover -v -s tests
done