1
0
mirror of https://github.com/gryf/coach.git synced 2025-12-31 19:12:33 +01:00

update dockerfile and makefile

This commit is contained in:
Zach Dwiel
2018-09-25 16:14:14 -04:00
committed by zach dwiel
parent 67faa80ea0
commit 1e83a27bee
3 changed files with 127 additions and 21 deletions

View File

@@ -34,8 +34,17 @@ build:
shell: build
${DOCKER} run ${RUN_ARGUMENTS} -it ${IMAGE} /bin/bash
test: build
${DOCKER} run ${RUN_ARGUMENTS} -it ${IMAGE} py.test tests
unit_tests: build
${DOCKER} run ${RUN_ARGUMENTS} -it ${IMAGE} python3 -m pytest rl_coach/tests -m unit_test -n 8
integration_tests: build
${DOCKER} run ${RUN_ARGUMENTS} -it ${IMAGE} python3 -m pytest rl_coach/tests -m integration_test -n auto
golden_tests: build
${DOCKER} run ${RUN_ARGUMENTS} -it ${IMAGE} python3 rl_coach/tests/golden_tests.py
trace_tests: build
${DOCKER} run ${RUN_ARGUMENTS} -it ${IMAGE} python3 rl_coach/tests/trace_tests.py -prl
run: build
${DOCKER} run ${RUN_ARGUMENTS} -it ${IMAGE}