-
Notifications
You must be signed in to change notification settings - Fork 13
/
Makefile
40 lines (32 loc) · 1.21 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
.PHONY: black
black:
find . -name '*.py' | xargs black --check --line-length=100
.PHONY: pylint
pylint:
find . -name '*.py' | xargs pylint --output-format=colorized
.PHONY: validate_message_ids
validate_message_ids:
python scripts/ci_validate_msg_ids.py
.PHONY: pytest
pytest:
pytest tests/ -W ignore::DeprecationWarning
.PHONY: clean-compiled
clean-compiled: # Remove Python artifacts
find . -name '*.pyc' -exec rm -f {} +
find . -name '__pycache__' -exec rm -rf {} +
.PHONY: ci
ci: | clean-compiled black pylint validate_message_ids pytest
.PHONY: ci-docker
ci-docker: build_ci_image
docker run -ti -v `pwd`:/pylint-airflow -w /pylint-airflow basph/pylint-airflow-ci:3.6-slim pip install .; make ci
docker run -ti -v `pwd`:/pylint-airflow -w /pylint-airflow basph/pylint-airflow-ci:3.7-slim pip install .; make ci
.PHONY: build_ci_image
build_ci_image:
docker build --file docker/ci.Dockerfile --build-arg PYTHON_VERSION=3.6-slim --tag basph/pylint-airflow-ci:3.6-slim .
docker build --file docker/ci.Dockerfile --build-arg PYTHON_VERSION=3.7-slim --tag basph/pylint-airflow-ci:3.7-slim .
.PHONY: upload-to-pypi
upload-to-pypi:
rm -rf dist/
python setup.py sdist bdist_wheel
twine check dist/*
twine upload dist/*