-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathMakefile
More file actions
34 lines (25 loc) · 904 Bytes
/
Makefile
File metadata and controls
34 lines (25 loc) · 904 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
black:
black clumper tests setup.py --check
flake:
flake8 clumper tests setup.py
test:
pytest
interrogate:
interrogate -vv --ignore-nested-functions --ignore-semiprivate --ignore-private --ignore-magic --ignore-module --ignore-init-method --fail-under 100 tests
interrogate -vv --ignore-nested-functions --ignore-semiprivate --ignore-private --ignore-magic --ignore-module --ignore-init-method --fail-under 100 clumper
check: black flake test interrogate
install:
pip install rich
python -m pip install -e .
install-dev: install
python -m pip install -e ".[dev]"
pre-commit install
install-test: install
python -m pip install -e ".[test]"
python -m pip install -e ".[all]"
pypi:
python setup.py sdist
python setup.py bdist_wheel --universal
twine upload dist/*
clean:
rm -rf **/.ipynb_checkpoints **/.pytest_cache **/__pycache__ **/**/__pycache__ .ipynb_checkpoints .pytest_cache