File: upstream

package info (click to toggle)
python-django-netfields 1.3.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 468 kB
  • sloc: python: 2,049; sh: 7; makefile: 4; sql: 2
file content (11 lines) | stat: -rw-r--r-- 273 bytes parent folder | download | duplicates (2)
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 testsettings.py manage.py ${AUTOPKGTEST_TMP}
cd ${AUTOPKGTEST_TMP}
for p in $(py3versions -s); do
    DJANGO_SETTINGS_MODULE=testsettings $p -m pytest -k "not test_set_masklen"
done