File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 8888 django-version :
8989 - " 2.2"
9090 - " 3.1"
91+ - " 3.2rc1"
9192 steps :
9293 - name : Set up Python ${{ matrix.python-version }}
9394
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ classifier =
2626 Framework :: Django
2727 Framework :: Django :: 2.2
2828 Framework :: Django :: 3.1
29+ Framework :: Django :: 3.2
2930
3031python_requires = >=3.7
3132
@@ -60,7 +61,9 @@ test = pytest
6061[tool:pytest]
6162norecursedirs =venv env .eggs
6263DJANGO_SETTINGS_MODULE =tests.settings
63- addopts = --cov =stdimage --nomigrations
64+ addopts = --cov =stdimage --nomigrations --tb =short
65+ filterwarnings =
66+ error
6467
6568[coverage:run]
6669source = .
Original file line number Diff line number Diff line change 1- from django .conf .urls import url
21from django .contrib import admin
2+ from django .urls import path
33
44admin .autodiscover ()
55
66urlpatterns = [
7- url ( r"^ admin/" , admin .site .urls ),
7+ path ( " admin/" , admin .site .urls ),
88]
You can’t perform that action at this time.
0 commit comments