From: Jt Miclat Date: Tue, 27 Aug 2019 16:51:36 +0000 (+0800) Subject: Allow per file running of tests (#287) X-Git-Tag: 0.7.2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1f4b8dd054009f43a5a2c2fd7e38cbf7a539bb2f;p=thirdparty%2Fhttpx.git Allow per file running of tests (#287) * Allow per file running of tests * Simply PR --- diff --git a/noxfile.py b/noxfile.py index dea8595b..e71d208a 100644 --- a/noxfile.py +++ b/noxfile.py @@ -38,5 +38,4 @@ def docs(session): @nox.session(python=["3.6", "3.7", "3.8"]) def test(session): session.install("-r", "test-requirements.txt") - - session.run("python", "-m", "pytest") + session.run("python", "-m", "pytest", *session.posargs)