forked from medipixel/rl_algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
29 lines (23 loc) · 758 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
format:
black . --exclude checkpoint wandb
isort . --skip checkpoint --skip wandb --skip data
test:
black . --check
isort . --check --diff --skip checkpoint --skip wandb --skip data
env PYTHONPATH=. pytest --pylint --flake8 --cov=tests --ignore=checkpoint --ignore=data --ignore=wandb --ignore tests/integration
integration-test:
env PYTHONPATH=. pytest tests/integration --cov=tests
docker-push:
docker build -t medipixel/rl_algorithms .
docker push medipixel/rl_algorithms
dev:
pip install -U -r requirements.txt
pip install -U -r requirements-dev.txt
pre-commit install
python setup.py develop
dep:
pip install -U -r requirements.txt
python setup.py install
jenkins-dev:
pip install -U -r requirements-dev.txt
python setup.py develop