Skip to content

Commit

Permalink
Add justfile
Browse files Browse the repository at this point in the history
  • Loading branch information
pthom committed Oct 22, 2024
1 parent 025d1ae commit 5510d2a
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
default:
just --list


build_integration_tests:
python src/litgen/integration_tests/autogenerate_mylib.py
cd src/litgen/integration_tests && pip install -v -e . && cd -


integration_tests: build_integration_tests
# Runs all tests, after building the integration tests
pytest


pytest:
# Will not build the integration tests!
pytest

mypy:
# Runs mypy on the top level folder (see mypy.ini)
mypy .

0 comments on commit 5510d2a

Please sign in to comment.