-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
52 lines (40 loc) · 1.32 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
41
42
43
44
45
46
47
48
49
50
51
52
STATEDIR = $(PWD)/.state
.PHONY: clean clean-test clean-pyc clean-build venv help
.DEFAULT_GOAL := help
clean: clean-build clean-pyc clean-state clean-test
clean-build: ## remove build artifacts
rm -fr build/
rm -fr dist/
rm -fr .eggs/
find . -name '*.egg-info' -exec rm -fr {} +
find . -name '*.egg' -exec rm -f {} +
clean-pyc: ## remove Python file artifacts
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +
find . -name '*~' -exec rm -f {} +
find . -name '__pycache__' -exec rm -fr {} +
clean-state: ## remove the build state
rm -rf $(STATEDIR)
clean-test: ## remove test and coverage artifacts
rm -fr .tox/
rm -fr assets/
rm -f report.html
venv:
python3 -m venv .venv && \
. .venv/bin/activate && \
pip install -r requirements.txt
precommit:
pre-commit install
test-webview: venv
@. .venv/bin/activate && pytest -m webview \
--webview_base_url $(WEBVIEW_BASE_URL) \
--legacy_base_url $(LEGACY_BASE_URL)
--archive_base_url $(ARCHIVE_BASE_URL)
help:
@echo "The following targets are available"
@echo "clean Remove build, test, and file artifacts"
@echo "clean-build Remove build artifacts"
@echo "clean-pyc Remove file artifacts"
@echo "clean-state Remove make's build state"
@echo "clean-test Remove test artifacts"
@echo "venv Set up a virtualenv for this project"