From 9308633ded514f624ec3a7c29547d5c163f86051 Mon Sep 17 00:00:00 2001 From: Alexander Hess Date: Sun, 20 Oct 2024 02:24:43 +0200 Subject: [PATCH] Make smoke tests exit early --- noxfile.py | 1 + 1 file changed, 1 insertion(+) diff --git a/noxfile.py b/noxfile.py index 6727413..5045946 100644 --- a/noxfile.py +++ b/noxfile.py @@ -259,6 +259,7 @@ def test(session: nox.Session) -> None: ( # the following arguments are added: "--cov-fail-under=100", "--smoke-tests-only", + "--exitfirst", ) if session.env.get("_smoke_tests_only") else ()