File: python3-django-hyperkitty

package info (click to toggle)
hyperkitty 1.3.12-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,996 kB
  • sloc: javascript: 38,879; python: 12,081; makefile: 157; sh: 5
file content (9 lines) | stat: -rwxr-xr-x 234 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
#!/bin/bash

python3_versions="$(py3versions -s 2> /dev/null)"

cd "${AUTOPKGTEST_TMP}"

for python3 in $python3_versions; do
    $python3 $(which django-admin) test --settings=hyperkitty.tests.settings_test hyperkitty || exit 1
done