Skip to content

Commit

Permalink
fix: makefile identation fixed to tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
mwtmurphy committed Jan 12, 2024
1 parent d968105 commit a467d3c
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions {{cookiecutter.repo_name}}/Makefile
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
env: poetry
poetry install
env: pyproject.toml
poetry install

major: pyproject.toml
poetry version major
poetry version major

minor: pyproject.toml
poetry version minor
poetry version minor

patch: pyproject.toml
poetry version patch
poetry version patch

poetry_env:
poetry init -q
poetry add --group dev click dvc ipykernel pytest pytest-cov
poetry add --group dev coverage -E toml
poetry init -q
poetry add --group dev click dvc ipykernel pytest pytest-cov
poetry add --group dev coverage -E toml

src_tests: pyproject.toml
poetry run pytest
poetry run pytest

src_tests_cov: pyproject.toml
poetry run pytest --cov
poetry run pytest --cov

0 comments on commit a467d3c

Please sign in to comment.