4 Star 4 Fork 1

Gitee 极速下载 / PyVista

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/pyvista/pyvista
克隆/下载
Makefile 1.24 KB
一键复制 编辑 原始数据 按行查看 历史
Bane Sullivan 提交于 2023-04-19 12:58 . Remove flask examples (#4299)
# Simple makefile to simplify repetitive build env management tasks under posix
# Directories to run style checks against
CODE_DIRS ?= doc examples examples_trame pyvista tests
# Files in top level directory
CODE_FILES ?= *.py *.rst *.md
# doctest-modules-local-namespace must be off screen to avoid plotting everything
doctest-modules-local-namespace: export PYVISTA_OFF_SCREEN = True
doctest-modules:
@echo "Running module doctesting"
pytest -v --doctest-modules pyvista
doctest-modules-local-namespace:
@echo "Running module doctesting using docstring local namespace"
python tests/check_doctest_names.py
example-coverage:
python -m ansys.tools.example_coverage -f pyvista
coverage:
@echo "Running coverage"
@pytest -v --cov pyvista
coverage-xml:
@echo "Reporting XML coverage"
@pytest -v --cov pyvista --cov-report xml
coverage-html:
@echo "Reporting HTML coverage"
@pytest -v --cov pyvista --cov-report html
coverage-docs:
@echo "Reporting documentation coverage"
@make -C doc html SPHINXOPTS="-Q" -b coverage
@cat doc/_build/coverage/python.txt
# Install vale first with `pip install vale`
docstyle:
@echo "Running vale"
@vale --config doc/.vale.ini doc pyvista examples ./*.rst --glob='!*{_build,AUTHORS.rst,_autosummary,source/examples}*'
Python
1
https://gitee.com/mirrors/PyVista.git
git@gitee.com:mirrors/PyVista.git
mirrors
PyVista
PyVista
main

搜索帮助