2018-09-29 17:08:39 +02:00
|
|
|
|
.DEFAULT_GOAL := help
|
2020-01-10 15:30:09 +01:00
|
|
|
|
.PHONY: docs
|
2021-11-23 16:25:09 +08:00
|
|
|
|
SRC_DIRS = ./tutor ./tests ./bin ./docs
|
2019-06-06 21:58:21 +02:00
|
|
|
|
BLACK_OPTS = --exclude templates ${SRC_DIRS}
|
2018-09-29 17:08:39 +02:00
|
|
|
|
|
2019-03-18 17:26:37 +01:00
|
|
|
|
###### Development
|
|
|
|
|
|
2022-01-05 10:46:19 -05:00
|
|
|
|
docs: ## Build HTML documentation
|
2020-01-10 15:30:09 +01:00
|
|
|
|
$(MAKE) -C docs
|
|
|
|
|
|
2019-01-22 21:25:04 +01:00
|
|
|
|
compile-requirements: ## Compile requirements files
|
2020-01-10 15:38:17 +01:00
|
|
|
|
pip-compile requirements/base.in
|
|
|
|
|
pip-compile requirements/dev.in
|
|
|
|
|
pip-compile requirements/docs.in
|
|
|
|
|
|
|
|
|
|
upgrade-requirements: ## Upgrade requirements files
|
|
|
|
|
pip-compile --upgrade requirements/base.in
|
|
|
|
|
pip-compile --upgrade requirements/dev.in
|
|
|
|
|
pip-compile --upgrade requirements/docs.in
|
2020-06-21 13:47:14 +02:00
|
|
|
|
|
2022-01-05 10:46:19 -05:00
|
|
|
|
build-pythonpackage: build-pythonpackage-tutor ## Build Python packages ready to upload to pypi
|
2021-07-06 09:42:57 +02:00
|
|
|
|
|
|
|
|
|
build-pythonpackage-tutor: ## Build the "tutor" python package for upload to pypi
|
2020-10-02 13:34:54 +02:00
|
|
|
|
python setup.py sdist
|
2021-07-06 09:42:57 +02:00
|
|
|
|
|
2021-03-17 18:19:43 +01:00
|
|
|
|
push-pythonpackage: ## Push python package to pypi
|
2021-06-25 17:03:43 +02:00
|
|
|
|
twine upload --skip-existing dist/tutor-$(shell make version).tar.gz
|
2020-10-02 13:34:54 +02:00
|
|
|
|
|
2022-01-05 10:46:19 -05:00
|
|
|
|
test: test-lint test-unit test-types test-format test-pythonpackage ## Run all tests by decreasing order of priority
|
2019-05-05 11:40:49 +02:00
|
|
|
|
|
|
|
|
|
test-format: ## Run code formatting tests
|
2019-06-03 12:23:05 +02:00
|
|
|
|
black --check --diff $(BLACK_OPTS)
|
2019-05-05 11:40:49 +02:00
|
|
|
|
|
|
|
|
|
test-lint: ## Run code linting tests
|
2021-11-08 15:41:35 +01:00
|
|
|
|
pylint --errors-only --enable=unused-import,unused-argument --ignore=templates ${SRC_DIRS}
|
2019-05-05 11:40:49 +02:00
|
|
|
|
|
2019-08-21 18:32:39 +02:00
|
|
|
|
test-unit: ## Run unit tests
|
2020-10-02 13:34:54 +02:00
|
|
|
|
python -m unittest discover tests
|
2019-03-23 16:16:03 -07:00
|
|
|
|
|
2021-02-25 09:09:14 +01:00
|
|
|
|
test-types: ## Check type definitions
|
|
|
|
|
mypy --exclude=templates --ignore-missing-imports --strict tutor/ tests/
|
|
|
|
|
|
2020-10-02 13:34:54 +02:00
|
|
|
|
test-pythonpackage: build-pythonpackage ## Test that package can be uploaded to pypi
|
2021-06-25 17:03:43 +02:00
|
|
|
|
twine check dist/tutor-$(shell make version).tar.gz
|
2019-06-19 12:02:28 +02:00
|
|
|
|
|
2022-02-21 11:53:17 +01:00
|
|
|
|
test-k8s: ## Validate the k8s format with kubectl. Not part of the standard test suite.
|
|
|
|
|
tutor k8s apply --dry-run=client --validate=true
|
|
|
|
|
|
2019-05-05 11:40:49 +02:00
|
|
|
|
format: ## Format code automatically
|
2019-06-03 12:23:05 +02:00
|
|
|
|
black $(BLACK_OPTS)
|
2019-05-05 11:40:49 +02:00
|
|
|
|
|
2020-10-02 13:34:54 +02:00
|
|
|
|
bootstrap-dev: ## Install dev requirements
|
|
|
|
|
pip install .
|
|
|
|
|
pip install -r requirements/dev.txt
|
|
|
|
|
|
2022-01-05 10:46:19 -05:00
|
|
|
|
bootstrap-dev-plugins: bootstrap-dev ## Install dev requirements and all supported plugins
|
2020-10-02 13:34:54 +02:00
|
|
|
|
pip install -r requirements/plugins.txt
|
|
|
|
|
|
2021-11-23 16:25:09 +08:00
|
|
|
|
###### Code coverage
|
|
|
|
|
|
|
|
|
|
coverage: ## Run unit-tests before analyzing code coverage and generate report
|
|
|
|
|
$(MAKE) --keep-going coverage-tests coverage-report
|
|
|
|
|
|
|
|
|
|
coverage-tests: ## Run unit-tests and analyze code coverage
|
|
|
|
|
coverage run -m unittest discover
|
|
|
|
|
|
|
|
|
|
coverage-report: ## Generate CLI report for the code coverage
|
|
|
|
|
coverage report
|
|
|
|
|
|
|
|
|
|
coverage-html: coverage-report ## Generate HTML report for the code coverage
|
|
|
|
|
coverage html
|
|
|
|
|
|
|
|
|
|
coverage-browse-report: coverage-html ## Open the HTML report in the browser
|
|
|
|
|
sensible-browser htmlcov/index.html
|
|
|
|
|
|
2019-03-18 17:26:37 +01:00
|
|
|
|
###### Deployment
|
|
|
|
|
|
2019-01-22 21:25:04 +01:00
|
|
|
|
bundle: ## Bundle the tutor package in a single "dist/tutor" executable
|
2019-08-20 17:01:34 +02:00
|
|
|
|
pyinstaller tutor.spec
|
2019-02-24 20:14:25 +01:00
|
|
|
|
|
2021-05-17 15:39:46 +02:00
|
|
|
|
release: test release-unsafe ## Create a release tag and push it to origin
|
|
|
|
|
release-unsafe:
|
2021-03-17 16:45:01 +01:00
|
|
|
|
$(MAKE) release-tag release-push TAG=v$(shell make version)
|
|
|
|
|
release-tag:
|
2019-02-18 09:57:59 +01:00
|
|
|
|
@echo "=== Creating tag $(TAG)"
|
2019-02-18 09:22:41 +01:00
|
|
|
|
git tag -d $(TAG) || true
|
|
|
|
|
git tag $(TAG)
|
2021-03-17 16:45:01 +01:00
|
|
|
|
release-push:
|
2019-06-23 17:01:28 +02:00
|
|
|
|
@echo "=== Pushing tag $(TAG) to origin"
|
2020-06-21 13:47:14 +02:00
|
|
|
|
git push origin
|
2019-02-18 09:22:41 +01:00
|
|
|
|
git push origin :$(TAG) || true
|
|
|
|
|
git push origin $(TAG)
|
|
|
|
|
|
2021-05-17 15:39:46 +02:00
|
|
|
|
release-description: ## Write the current release description to a file
|
|
|
|
|
sed "s/TUTOR_VERSION/v$(shell make version)/g" docs/_release_description.md > release_description.md
|
|
|
|
|
git log -1 --pretty=format:%b >> release_description.md
|
|
|
|
|
|
2019-03-18 17:26:37 +01:00
|
|
|
|
###### Continuous integration tasks
|
|
|
|
|
|
2021-03-17 18:19:27 +01:00
|
|
|
|
pull-base-images: # Manually pull base images
|
|
|
|
|
docker image pull docker.io/ubuntu:20.04
|
|
|
|
|
docker image pull docker.io/python:3.7-alpine
|
|
|
|
|
|
2019-02-10 21:02:30 +01:00
|
|
|
|
ci-info: ## Print info about environment
|
2020-10-02 13:34:54 +02:00
|
|
|
|
python --version
|
|
|
|
|
pip --version
|
2019-06-23 22:46:41 +02:00
|
|
|
|
|
2020-10-02 13:34:54 +02:00
|
|
|
|
ci-test-bundle: ## Run basic tests on bundle
|
2020-07-01 09:21:45 +02:00
|
|
|
|
ls -lh ./dist/tutor
|
2019-03-18 17:26:37 +01:00
|
|
|
|
./dist/tutor --version
|
|
|
|
|
./dist/tutor config printroot
|
2019-06-05 19:45:22 +02:00
|
|
|
|
yes "" | ./dist/tutor config save --interactive
|
2019-07-03 22:09:33 +08:00
|
|
|
|
./dist/tutor config save
|
2020-01-14 13:32:45 +01:00
|
|
|
|
./dist/tutor plugins list
|
2021-10-25 19:32:13 +02:00
|
|
|
|
./dist/tutor plugins enable android discovery ecommerce forum license mfe minio notes richie webui xqueue
|
2020-01-14 13:32:45 +01:00
|
|
|
|
./dist/tutor plugins list
|
2020-09-17 12:53:14 +02:00
|
|
|
|
./dist/tutor license --help
|
2019-02-10 21:02:30 +01:00
|
|
|
|
|
2019-07-04 22:28:45 +08:00
|
|
|
|
ci-bootstrap-images:
|
2020-10-02 13:34:54 +02:00
|
|
|
|
pip install .
|
2019-07-04 17:26:10 +08:00
|
|
|
|
tutor config save
|
2019-04-22 15:14:46 +02:00
|
|
|
|
|
2019-03-18 17:26:37 +01:00
|
|
|
|
###### Additional commands
|
|
|
|
|
|
|
|
|
|
version: ## Print the current tutor version
|
2022-03-31 15:36:30 +02:00
|
|
|
|
@python -c 'import io, os; about = {}; exec(io.open(os.path.join("tutor", "__about__.py"), "rt", encoding="utf-8").read(), about); print(about["__package_version__"])'
|
2019-03-18 17:26:37 +01:00
|
|
|
|
|
2018-09-29 17:22:55 +02:00
|
|
|
|
ESCAPE =
|
|
|
|
|
help: ## Print this help
|
|
|
|
|
@grep -E '^([a-zA-Z_-]+:.*?## .*|######* .+)$$' Makefile \
|
2022-01-05 10:46:19 -05:00
|
|
|
|
| sed 's/######* \(.*\)/@ $(ESCAPE)[1;31m\1$(ESCAPE)[0m/g' | tr '@' '\n' \
|
2018-09-29 17:22:55 +02:00
|
|
|
|
| awk 'BEGIN {FS = ":.*?## "}; {printf "\033[33m%-30s\033[0m %s\n", $$1, $$2}'
|