From f2b92683273332c1e5f81b338512760dad8ec52c Mon Sep 17 00:00:00 2001 From: Lukas Turcani Date: Wed, 18 Sep 2024 11:39:28 +0100 Subject: [PATCH] Trigger trap on Mac --- justfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/justfile b/justfile index f507a47..7e2924f 100644 --- a/justfile +++ b/justfile @@ -21,18 +21,23 @@ check: echo (set -x; ruff check src/ tests/ docs/source/ examples/ ) + test $? = 0 echo ( set -x; ruff format --check src/ tests/ docs/source/ examples/ ) + test $? = 0 echo ( set -x; mypy src/ tests/ docs/source/ examples/ ) + test $? = 0 echo ( set -x; pytest --cov=src --cov-report term-missing ) + test $? = 0 echo ( set -x; make -C docs doctest ) + test $? = 0 test $error = 0