mirror of
https://github.com/enpaul/tox-poetry-installer.git
synced 2025-04-04 21:53:42 +00:00
Add dev makefile target for setting up the local dev env
This commit is contained in:
parent
e3b3b19b31
commit
cc54e6243a
6
Makefile
6
Makefile
@ -32,5 +32,9 @@ source: ## Build Python source distribution package
|
|||||||
test: ## Run the project testsuite(s)
|
test: ## Run the project testsuite(s)
|
||||||
poetry run tox --recreate
|
poetry run tox --recreate
|
||||||
|
|
||||||
publish: wheel source ## Build and upload to pypi (requires $PYPI_API_KEY be set)
|
dev: ## Create the local dev environment
|
||||||
|
poetry install -E poetry
|
||||||
|
poetry run pre-commit install
|
||||||
|
|
||||||
|
publish: test wheel source ## Build and upload to pypi (requires $PYPI_API_KEY be set)
|
||||||
@poetry publish --username __token__ --password $(PYPI_API_KEY)
|
@poetry publish --username __token__ --password $(PYPI_API_KEY)
|
||||||
|
15
README.md
15
README.md
@ -491,15 +491,16 @@ git clone https://github.com/enpaul/tox-poetry-installer.git
|
|||||||
# ...over SSH
|
# ...over SSH
|
||||||
git clone git@github.com:enpaul/tox-poetry-installer.git
|
git clone git@github.com:enpaul/tox-poetry-installer.git
|
||||||
|
|
||||||
# Create a the local project virtual environment and install dependencies
|
cd tox-poetry-installer/
|
||||||
cd tox-poetry-installer
|
|
||||||
poetry install -E poetry
|
|
||||||
|
|
||||||
# Install pre-commit hooks
|
# Create and configure the local development environment
|
||||||
poetry run pre-commit install
|
make dev
|
||||||
|
|
||||||
# Run tests and static analysis
|
# Run tests and CI locally
|
||||||
poetry run tox
|
make test
|
||||||
|
|
||||||
|
# Check additional make targets
|
||||||
|
make help
|
||||||
```
|
```
|
||||||
|
|
||||||
**NOTE:** Because the pre-commit hooks require dependencies in the Poetry environment it
|
**NOTE:** Because the pre-commit hooks require dependencies in the Poetry environment it
|
||||||
|
Loading…
Reference in New Issue
Block a user