mirror of
https://github.com/ansible-collections/hetzner.hcloud
synced 2024-11-10 06:34:13 +00:00
79f90b3881
##### SUMMARY Add configuration files to simplify the dev setup for the project. This will help IDEs to provide insight during development. Pylint is already run by the ansible-test sanity checks.
16 lines
252 B
Makefile
16 lines
252 B
Makefile
SHELL := bash
|
|
.PHONY: vendor clean
|
|
|
|
vendor:
|
|
python3 scripts/vendor.py
|
|
|
|
venv:
|
|
python3 -m venv venv
|
|
venv/bin/pip install -r requirements.txt
|
|
|
|
lint: venv
|
|
venv/bin/pylint plugins
|
|
|
|
clean:
|
|
git clean -xdf \
|
|
-e tests/integration/cloud-config-hcloud.ini
|