Codebase list django-allauth / f73bd20
Fix py3versions call in the autopkgtests script Pierre-Elliott Bécue 1 year, 6 months ago
2 changed file(s) with 2 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
55 - Drop version for django dependency
66 * debian/watch: More selective release URL
77 * Update lintian-overrides
8 * Fix py3versions call in the autopkgtests script
89
910 -- Pierre-Elliott Bécue <peb@debian.org> Sat, 15 Oct 2022 11:00:12 +0200
1011
00 #!/bin/bash -e
11
2 for python in $(py3versions -r); do \
2 for python in $(py3versions -s); do \
33 PYTHONPATH="." DJANGO_SETTINGS_MODULE=test_settings ${python} $(which django-admin) test allauth.tests;\
44 done