forked from mindee/doctr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
30 lines (24 loc) · 710 Bytes
/
Makefile
File metadata and controls
30 lines (24 loc) · 710 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
.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
coverage run -m pytest tests/pytorch/ -rs
coverage report --fail-under=80 --show-missing
test-common:
coverage run -m pytest tests/common/ -rs
test-torch:
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