lightning/Makefile

40 lines
1.1 KiB
Makefile
Raw Normal View History

.PHONY: test clean docs
# to imitate SLURM set only single node
export SLURM_LOCALID=0
# assume you have installed need packages
export SPHINX_MOCK_REQUIREMENTS=1
clean:
# clean all temp runs
rm -rf $(shell find . -name "mlruns")
rm -rf $(shell find . -name "lightning_log")
2021-02-08 01:31:44 +00:00
rm -rf $(shell find . -name "lightning_logs")
rm -rf _ckpt_*
rm -rf .mypy_cache
rm -rf .pytest_cache
rm -rf ./docs/build
rm -rf ./docs/source-pytorch/notebooks
rm -rf ./docs/source-pytorch/generated
rm -rf ./docs/source-pytorch/*/generated
rm -rf ./docs/source-pytorch/api
rm -rf build
rm -rf dist
rm -rf *.egg-info
rm -rf src/*.egg-info
test: clean
# Review the CONTRIBUTING documentation for other ways to test.
pip install -e . -r requirements/devel.txt
pip install -r requirements/strategies.txt
# run tests with coverage
python -m coverage run --source pytorch_lightning -m pytest pytorch_lightning tests -v
python -m coverage report
docs: clean
pip install -e . --quiet -r requirements/docs.txt
python -m sphinx -b html -W --keep-going docs/source-pytorch docs/build
2022-01-16 04:08:11 +00:00
update:
git submodule update --init --recursive --remote