From 04038c9f402e79c3d76a83606428081c5135258a Mon Sep 17 00:00:00 2001 From: Zach Dwiel Date: Wed, 26 Sep 2018 15:54:57 -0400 Subject: [PATCH] improve integration test output format --- docker/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Makefile b/docker/Makefile index 5a82500..bd5cbe8 100644 --- a/docker/Makefile +++ b/docker/Makefile @@ -38,7 +38,7 @@ 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 + ${DOCKER} run ${RUN_ARGUMENTS} -it ${IMAGE} python3 -m pytest rl_coach/tests -m integration_test -n auto --tb=short golden_tests: build ${DOCKER} run ${RUN_ARGUMENTS} -it ${IMAGE} python3 rl_coach/tests/golden_tests.py