-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
41 lines (27 loc) · 750 Bytes
/
Makefile
File metadata and controls
41 lines (27 loc) · 750 Bytes
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
setup: install just-build package-force-reinstall
setup-linux: install just-build package-force-reinstall-linux
install:
poetry install
just-build:
poetry build
test:
poetry run pytest -vv
test-coverage:
poetry run pytest --cov=gendiff --cov-report xml
test-coverage-simple:
poetry run pytest --cov-report term-missing --cov=gendiff
lint:
poetry run flake8 gendiff
selfcheck:
poetry check
check: selfcheck test lint
build: check
poetry build
package-install:
python -m pip install --user dist/*.whl
remove-envs:
rm -rf .venv && poetry env remove --all
package-force-reinstall:
python -m pip install --user --force-reinstall dist/*.whl
package-force-reinstall-linux:
python3 -m pip install --user --force-reinstall dist/*.whl