Codebase list django-allauth / ba7abf0
autopkgtest: Implement upstream tests Pierre-Elliott Bécue 4 years ago
3 changed file(s) with 11 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
0 django-allauth (0.40.0+ds-1) UNRELEASED; urgency=medium
0 django-allauth (0.40.0+ds-1) unstable; urgency=medium
11
22 * New upstream release 0.40.0
33 * d/control:
44 - Bump debhelper-compat level to 12
55 - Bump Standards-Version to 4.4.1
66 - Set Rules-Requires-Root to no
7 * d/tests:
8 - Implement upstream tests
79
8 -- Pierre-Elliott Bécue <peb@debian.org> Sat, 26 Oct 2019 11:29:17 +0200
10 -- Pierre-Elliott Bécue <peb@debian.org> Sat, 26 Oct 2019 11:54:12 +0200
911
1012 django-allauth (0.39.1+ds-1) unstable; urgency=medium
1113
0 Test-Command: set -e; for py in $(py3versions -r 2>/dev/null); do cd "$AUTOPKGTEST_TMP"; echo "Testing with $py:"; $py -c "import allauth; print(allauth)"; done
0 Tests: python3-tests
11 Depends: python3-all, python3-django-allauth
2 Restrictions: allow-stderr
0 #!/bin/bash -e
1
2 for python in $(py3versions -r); do \
3 PYTHONPATH="." DJANGO_SETTINGS_MODULE=test_settings ${python} $(which django-admin) test allauth.tests;\
4 done