From a3f8679b34ce93331c3d44f5da2e5db781f4735b Mon Sep 17 00:00:00 2001 From: Cathy Hu Date: Sat, 18 Jul 2020 22:26:36 +0200 Subject: [PATCH] [misc] Add pytest-asyncio as tests --- tox.ini | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/tox.ini b/tox.ini index 2c3c362..771994b 100644 --- a/tox.ini +++ b/tox.ini @@ -7,17 +7,19 @@ deps = . [testenv:flake8] deps = flake8 commands = - flake8 kibicara tests + flake8 kibicara tests [testenv:black] deps = black commands = - black -S --check --diff kibicara tests + black -S --check --diff kibicara tests [testenv:pytest] -deps = pytest +deps = + pytest + pytest-asyncio commands = - pytest + pytest [flake8] max_line_length = 88