We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a73eb58 commit 5672c64Copy full SHA for 5672c64
2 files changed
tests/test_request_handler.py
@@ -19,7 +19,6 @@ async def test_exceptions(self):
19
with self.assertRaises(CrownstoneAuthenticationError) as login_err:
20
await self.request_handler.raise_on_error(auth_error)
21
22
- print(login_err.exception.type)
23
assert login_err.exception.type == 'LOGIN_FAILED'
24
25
with self.assertRaises(CrownstoneAuthenticationError) as not_verified_err:
tox.ini
@@ -10,6 +10,7 @@ envlist = py37
10
deps =
11
aiohttp
12
coverage
13
+ asynctest
14
commands =
15
# NOTE: you can run any command line tool here - not just tests
16
coverage run --source crownstone_cloud -m unittest discover -v
0 commit comments