From 5acd794048d050f85b5dea93052f96abd8a583f2 Mon Sep 17 00:00:00 2001 From: Miguel Grinberg Date: Sun, 29 Jan 2023 12:17:33 +0000 Subject: [PATCH] Switch to pytest as test runner --- tox.ini | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 0b3198e..61e269c 100644 --- a/tox.ini +++ b/tox.ini @@ -12,9 +12,11 @@ python = pypy-3: pypy3 [testenv] -deps= commands= - python -m unittest discover + pip install -e . + pytest -p no:logging +deps= + pytest [testenv:flake8] deps=