File: upstream

package info (click to toggle)
python-django-dbconn-retry 0.1.9-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 148 kB
  • sloc: python: 209; sh: 7; sql: 4; makefile: 4
file content (11 lines) | stat: -rw-r--r-- 231 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

set -e

runuser -u postgres -- psql -f $(pwd)/debian/tests/init.sql

cp -r test_project ${AUTOPKGTEST_TMP}
cd ${AUTOPKGTEST_TMP}
for p in $(py3versions -s); do
    $p test_project/manage.py test django_dbconn_retry
done