stable-baselines3/Makefile

19 lines
188 B
Makefile
Raw Normal View History

SHELL=/bin/bash
pytest:
./scripts/run_tests.sh
2020-01-22 16:17:12 +00:00
type:
pytype
2020-01-28 09:24:02 +00:00
doc:
cd docs && make html
spelling:
cd docs && make spelling
2020-01-28 09:24:02 +00:00
clean:
cd docs && make clean
2020-04-30 09:26:28 +00:00
.PHONY: clean spelling doc