forked from mindee/doctr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
33 lines (26 loc) · 814 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
.PHONY: quality style test test-common test-tf test-torch docs-single-version docs
# this target runs checks on all files
quality:
ruff check .
mypy doctr/
# this target runs checks on all files and potentially modifies some of them
style:
ruff format .
ruff check --fix .
# Run tests for the library
test:
coverage run -m pytest tests/common/ -rs
USE_TF='1' coverage run -m pytest tests/tensorflow/ -rs
USE_TORCH='1' coverage run -m pytest tests/pytorch/ -rs
test-common:
coverage run -m pytest tests/common/ -rs
test-tf:
USE_TF='1' coverage run -m pytest tests/tensorflow/ -rs
test-torch:
USE_TORCH='1' coverage run -m pytest tests/pytorch/ -rs
# Check that docs can build
docs-single-version:
sphinx-build docs/source docs/_build -a
# Check that docs can build
docs:
cd docs && bash build.sh