Skip to content

Commit c22b823

Browse files
authored
Use django-configurations==2.0 in tests (#485)
Fixes #483.
1 parent 8a39211 commit c22b823

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/test_django_configurations.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
'https://github.com/jezdez/django-configurations/issues/65') # noqa
1616

1717
BARE_SETTINGS = '''
18-
from configurations import Settings
18+
from configurations import Configuration
1919
20-
class MySettings(Settings):
20+
class MySettings(Configuration):
2121
# At least one database must be configured
2222
DATABASES = {
2323
'default': {

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ envlist =
1212

1313
[testenv]
1414
deps =
15-
django-configurations==1.0
15+
django-configurations==2.0
1616
pytest-xdist==1.15
1717

1818
checkqa: flake8

0 commit comments

Comments
 (0)