forked from AmpX-AI/fsql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
62 lines (57 loc) · 1.71 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
53
54
55
56
57
58
59
60
61
62
# you can override this variable when you have eg .venv-py38 and .venv-py39
VENV_CORE=.venv
clean: ## 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 {} +
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +
find ./src/ -name '*.so' -exec rm -f {} +
find . -name '*~' -exec rm -f {} +
find . -name '__pycache__' -exec rm -fr {} +
rm -f results.xml
rm -fr htmlcov/
rm -fr .coverage
rm -rf .cache
rm -rf .pytest_cache
rm -rf .mypy_cache
rm -rf "${VENV_CORE}-precommit"
rm -rf "${VENV_CORE}-test"
rm -rf "${VENV_CORE}-build"
rm -f index.html
static-analysis: ## run mypy, black, flake, etc
(\
set -e ; \
python -m venv "${VENV_CORE}-precommit"; \
. "${VENV_CORE}-precommit/bin/activate"; \
pip install -U pip; \
pip install pre-commit; \
pre-commit install --install-hooks; \
pre-commit run --from-ref origin/main --to-ref HEAD; \
)
test-suite: ## install new venv, run tests and coverage
(\
set -e ; \
python -m venv "${VENV_CORE}-test"; \
. "${VENV_CORE}-test/bin/activate"; \
pip install -U pip; \
pip install .[test]; \
coverage run --source fsql -m pytest --junit-xml=results.xml tests/; \
coverage report -m; \
coverage html; \
)
install-edit: clean ## install the package in editable mode
pip install -e .[test]
build: clean
(\
set -e ; \
python -m venv "${VENV_CORE}-build"; \
. "${VENV_CORE}-build/bin/activate"; \
pip install -U pip; \
pip install -U build; \
if [ "$$GITHUB_REF_TYPE" = "tag" ] ; then export TARGET_VERSION=$$GITHUB_REF_NAME ; \
else export TARGET_VERSION=$$(git tag -l "v*" | sort -V -r | head -n 1) ; fi ; \
python -m build; \
)