Skip to content

Commit

Permalink
Trigger trap on Mac
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasturcani committed Sep 18, 2024
1 parent 4223885 commit f2b9268
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit f2b9268

Please sign in to comment.