File: python3-tests

package info (click to toggle)
python-limits 4.4.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,064 kB
  • sloc: python: 7,833; makefile: 162; sh: 59
file content (18 lines) | stat: -rwxr-xr-x 288 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash

set -e

function cleanup {
  $AUTOPKGTEST_TMP/stop-memcached
}

trap cleanup EXIT

cp -r tests debian/tests/*memcached* $AUTOPKGTEST_TMP
$AUTOPKGTEST_TMP/start-memcached

cd $AUTOPKGTEST_TMP
for p in $(py3versions -s); do
    echo "== $p =="
    $p memcached_storage.py
done