1 Star 0 Fork 0

gaojn / pandas-profiling

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
make.bat 1.28 KB
一键复制 编辑 原始数据 按行查看 历史
sbrugman 提交于 2020-04-06 13:55 . Loosen dependency policy
@echo off
setlocal enabledelayedexpansion
IF "%1%" == "docs" (
pdoc3 --html --force --output-dir docs pandas_profiling
robocopy .\docs\pandas_profiling .\docs /E /MOVE
ECHO "Docs updated!"
GOTO end
)
IF "%1" == "test" (
pytest --black tests/unit/
pytest --black tests/issues/
pytest --nbval tests/notebooks/
flake8 . --select=E9,F63,F7,F82 --show-source --statistics
ECHO "Tests completed!"
GOTO end
)
IF "%1" == "examples" (
FOR /R /D %%d in ("examples\*") do (
SET B=%%d
FOR /R %%f in ("!B:%CD%\=!\*.py") DO (
SET C=%%f
ECHO "Running !C:%%d\=! (in %%d)"
CD %%d && python "!C:%%d\=!"
CD %CD%
)
)
ECHO "Example runs completed!"
GOTO end
)
IF "%1" == "pypi_package" (
make install
check-manifest
python setup.py sdist bdist_wheel
twine check dist/*
twine upload --skip-existing dist/*
ECHO "PyPi package completed"
GOTO end
)
IF "%1" == "lint" (
black .
GOTO end
)
IF "%1" == "install" (
pip install -e .
GOTO end
)
if "%1" == "typing" (
pytest --mypy -m mypy .
GOTO end
)
IF "%1%" == "all" (
make lint
make install
make examples
make docs
make test
make typing
GOTO end
)
ECHO "No command matched"
:end
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/gaojn/pandas-profiling.git
git@gitee.com:gaojn/pandas-profiling.git
gaojn
pandas-profiling
pandas-profiling
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891