stable-baselines3/Makefile
2020-04-30 11:26:28 +02:00

18 lines
188 B
Makefile

SHELL=/bin/bash
pytest:
./scripts/run_tests.sh
type:
pytype
doc:
cd docs && make html
spelling:
cd docs && make spelling
clean:
cd docs && make clean
.PHONY: clean spelling doc