-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathMakefile
More file actions
32 lines (26 loc) · 762 Bytes
/
Copy pathMakefile
File metadata and controls
32 lines (26 loc) · 762 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
format-and-lint:
pre-commit run --all-files
test:
pytest -n auto
python -m doctest README.md
python -m doctest matfree/*.py
python tutorials/1_log_determinants.py
python tutorials/2_pytree_logdeterminants.py
python tutorials/3_uncertainty_quantification.py
python tutorials/4_control_variates.py
python tutorials/5_vector_calculus.py
python tutorials/6_low_memory_trace_estimation.py
clean-preview:
git clean -xdn
clean:
git clean -xdf
doc-preview:
python scripts/generate_api_docs.py
python scripts/readme_to_dev_docs.py
python scripts/tutorials_to_py_light.py
JUPYTER_PLATFORM_DIRS=1 mkdocs serve
doc-build:
python scripts/generate_api_docs.py
python scripts/readme_to_dev_docs.py
python scripts/tutorials_to_py_light.py
mkdocs build