From 1977d490721112b3b9e4fc6c472612c34b6fd783 Mon Sep 17 00:00:00 2001 From: Aedial Date: Sun, 30 Apr 2023 02:25:49 +0200 Subject: [PATCH] [TEST] Fix test-mock using wrong command --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 996ef2c..ff48779 100644 --- a/noxfile.py +++ b/noxfile.py @@ -69,7 +69,7 @@ def pre_commit(session: nox.Session): @nox.session(py=test_py_versions, name="test-mock") def test_mock(session: nox.Session): install_package(session, dev=True) - session.run("pytest", "--tb=short", "-n", "auto", "tests/mock/") + session.run("pytest", "tests/mock/") @nox.session(py=test_py_versions, name="test-api")