2021-02-01 16:09:12 +00:00
|
|
|
.PHONY: test clean docs
|
|
|
|
|
|
|
|
# to imitate SLURM set only single node
|
|
|
|
export SLURM_LOCALID=0
|
|
|
|
# assume you have installed need packages
|
2021-02-11 10:22:07 +00:00
|
|
|
export SPHINX_MOCK_REQUIREMENTS=1
|
2020-11-12 09:25:31 +00:00
|
|
|
|
2021-02-05 23:33:12 +00:00
|
|
|
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")
|
2021-02-05 23:33:12 +00:00
|
|
|
rm -rf _ckpt_*
|
|
|
|
rm -rf .mypy_cache
|
|
|
|
rm -rf .pytest_cache
|
|
|
|
rm -rf ./docs/build
|
2022-06-15 14:54:53 +00:00
|
|
|
rm -rf ./docs/source-pytorch/notebooks
|
|
|
|
rm -rf ./docs/source-pytorch/generated
|
|
|
|
rm -rf ./docs/source-pytorch/*/generated
|
|
|
|
rm -rf ./docs/source-pytorch/api
|
2022-06-17 03:07:30 +00:00
|
|
|
rm -rf ./docs/source-app/generated
|
|
|
|
rm -rf ./docs/source-app/*/generated
|
2022-06-15 14:54:53 +00:00
|
|
|
rm -rf build
|
|
|
|
rm -rf dist
|
2022-06-15 00:54:55 +00:00
|
|
|
rm -rf *.egg-info
|
|
|
|
rm -rf src/*.egg-info
|
2022-06-27 13:34:18 +00:00
|
|
|
rm -rf src/lightning/*/
|
2021-02-05 23:33:12 +00:00
|
|
|
|
|
|
|
test: clean
|
2022-05-09 13:25:53 +00:00
|
|
|
# Review the CONTRIBUTING documentation for other ways to test.
|
2022-06-21 15:11:33 +00:00
|
|
|
pip install -e . -r requirements/pytorch/devel.txt
|
|
|
|
pip install -r requirements/pytorch/strategies.txt
|
2021-02-15 19:05:49 +00:00
|
|
|
# run tests with coverage
|
2022-06-15 12:53:51 +00:00
|
|
|
python -m coverage run --source pytorch_lightning -m pytest pytorch_lightning tests -v
|
2021-02-01 16:09:12 +00:00
|
|
|
python -m coverage report
|
2020-11-12 09:25:31 +00:00
|
|
|
|
2021-02-01 16:09:12 +00:00
|
|
|
docs: clean
|
2022-06-21 15:11:33 +00:00
|
|
|
pip install -e . --quiet -r requirements/pytorch/docs.txt
|
2022-06-15 14:54:53 +00:00
|
|
|
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
|