File: run-tests

package info (click to toggle)
django-invitations 2.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 456 kB
  • sloc: python: 1,484; makefile: 27; sh: 6
file content (7 lines) | stat: -rwxr-xr-x 301 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
#!/bin/sh
set -e
cp -r tox.ini manage.py test* "$AUTOPKGTEST_TMP/" && cd "$AUTOPKGTEST_TMP"
for py in $(py3versions -s); do
    $py -Wd -m pytest -v -x --ignore=tests/allauth/  --ds=test_settings tests 2>&1
    $py -Wd -m pytest -v -x --ignore=tests/basic/  --ds=test_allauth_settings tests 2>&1
done