-
Notifications
You must be signed in to change notification settings - Fork 29
/
Makefile
43 lines (35 loc) · 954 Bytes
/
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
install:
pip3 install -e .
remove:
pip3 uninstall python_rucaptcha -y
refactor:
black docs/
isort docs/
autoflake --in-place \
--recursive \
--remove-unused-variables \
--remove-duplicate-keys \
--remove-all-unused-imports \
--ignore-init-module-imports \
src/ tests/ && \
black src/ tests/ && \
isort src/ tests/
lint:
autoflake --in-place --recursive src/ --check && \
black src/ --check && \
isort src/ --check-only
build:
pip3 install --upgrade build setuptools
python3 -m build
upload:
pip3 install twine wheel setuptools build
twine upload dist/*
tests: install
coverage run --rcfile=.coveragerc -m pytest --verbose --showlocals --pastebin=all \
tests/ --disable-warnings && \
coverage report --precision=3 --sort=cover --skip-empty --show-missing && \
coverage html --precision=3 --skip-empty -d coverage/html/ && \
coverage xml -o coverage/coverage.xml
doc: install
cd docs/ && \
make html -e