File: python3-django-gravatar2

package info (click to toggle)
python-django-gravatar2 1.4.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 200 kB
  • sloc: python: 421; makefile: 6; sh: 6
file content (10 lines) | stat: -rw-r--r-- 289 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

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

cp -r example_project "${AUTOPKGTEST_TMP}"
cd "${AUTOPKGTEST_TMP}"

for python3 in $python3_versions; do
    $python3 $(which django-admin) test --pythonpath=example_project --settings=settings django_gravatar || exit 1
done