File: python3-django-hyperkitty

package info (click to toggle)
hyperkitty 1.3.4-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 10,796 kB
  • sloc: javascript: 27,623; python: 10,669; makefile: 146; sh: 5
file content (9 lines) | stat: -rwxr-xr-x 234 bytes parent folder | download
1
2
3
4
5
6
7
8
9
#!/bin/bash

python3_versions="$(py3versions -r 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