Skip to content

Commit

Permalink
fix paths
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinBernstorff committed Oct 25, 2023
1 parent 7079a7f commit ae437cf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ install:
pip install -e .

test: ## Run tests
pytest {{cookiecutter.package_name}}
pytest src

lint: ## Format code
ruff check {{cookiecutter.package_name}} --fix
ruff format {{cookiecutter.package_name}}
ruff check src --fix
ruff format src

type-check: ## Type-check code
pyright {{cookiecutter.package_name}}
pyright src

validate: ## Run all checks
make lint
Expand Down

0 comments on commit ae437cf

Please sign in to comment.