mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-22 09:36:49 +03:00
Update pytest (#6768)
* Update pytest to 5.x * Ensure test de-monkeypatches auth on failure * Fix pytest.raises compat issue
This commit is contained in:
parent
82c2b5c3e7
commit
c04d6eac43
|
@ -1,4 +1,4 @@
|
||||||
# Pytest for running the tests.
|
# Pytest for running the tests.
|
||||||
pytest>=4.5.0,<4.6
|
pytest>=5.0,<5.1
|
||||||
pytest-django>=3.4.8,<3.5
|
pytest-django>=3.5.1,<3.6
|
||||||
pytest-cov>=2.7.1
|
pytest-cov>=2.7.1
|
||||||
|
|
|
@ -533,10 +533,12 @@ class BasicAuthenticationUnitTests(TestCase):
|
||||||
is_active = False
|
is_active = False
|
||||||
old_authenticate = authentication.authenticate
|
old_authenticate = authentication.authenticate
|
||||||
authentication.authenticate = lambda **kwargs: MockUser()
|
authentication.authenticate = lambda **kwargs: MockUser()
|
||||||
|
try:
|
||||||
auth = authentication.BasicAuthentication()
|
auth = authentication.BasicAuthentication()
|
||||||
with pytest.raises(exceptions.AuthenticationFailed) as error:
|
with pytest.raises(exceptions.AuthenticationFailed) as exc_info:
|
||||||
auth.authenticate_credentials('foo', 'bar')
|
auth.authenticate_credentials('foo', 'bar')
|
||||||
assert 'User inactive or deleted.' in str(error)
|
assert 'User inactive or deleted.' in str(exc_info.value)
|
||||||
|
finally:
|
||||||
authentication.authenticate = old_authenticate
|
authentication.authenticate = old_authenticate
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user