mirror of
https://github.com/wassname/kair_algorithms_draft.git
synced 2026-09-01 12:23:25 +08:00
* Add overall CI settings * Add specific build dir to travis * Add before install/script condition to travis * Add ddpg baseline * Add wandb, remove algorithms except ddpg * Remove init file in script * Separate config file for ddpg * Remove unnecessary examples * Remove unnecessary args opt * Add pre-commit setting * Change pre-commit settings * Change travis-ci setting * Fix travis-ci issue * Modify argparse arguments, fix requirements * Change arguments order
14 lines
189 B
Makefile
14 lines
189 B
Makefile
test:
|
|
pytest --flake8 # --cov=algorithms
|
|
|
|
format:
|
|
black .
|
|
isort -y
|
|
|
|
dev:
|
|
pip install -r scripts/requirements-dev.txt
|
|
pre-commit install
|
|
|
|
dep:
|
|
pip install -r scripts/requirements.txt
|