Skip to content
This repository has been archived by the owner on Dec 11, 2022. It is now read-only.

Commit

Permalink
ensure nightly test env containers exist. (#205)
Browse files Browse the repository at this point in the history
Also bump integration test timeout
  • Loading branch information
scttl authored and balajismaniam committed Jan 18, 2019
1 parent bf0a65e commit 516547e
Showing 1 changed file with 22 additions and 6 deletions.
28 changes: 22 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ jobs:
name: run integration tests
command: |
python3 rl_coach/tests/test_eks.py -c coach-test -bn ${CIRCLE_BUILD_NUM} -tn integration-test -tc 'make integration_tests_without_docker' -i 316971102342.dkr.ecr.us-west-2.amazonaws.com/coach:$(git describe --tags --always --dirty) -cpu 2048 -mem 4096
no_output_timeout: 20m
- run:
name: cleanup
command: |
Expand Down Expand Up @@ -389,9 +390,24 @@ workflows:
jobs:
- unit_tests
- integration_tests
- golden_test_gym
- golden_test_doom
- golden_test_mujoco
# - trace_test_gym
# - trace_test_doom
# - trace_test_mujoco
- build_gym_env
- build_doom_env
- build_mujoco_env
- golden_test_gym:
requires:
- build_gym_env
- golden_test_doom:
requires:
- build_doom_env
- golden_test_mujoco:
requires:
- build_mujoco_env
# - trace_test_gym:
# requires:
# - build_gym_env
# - trace_test_doom:
# requires:
# - build_doom_env
# - trace_test_mujoco:
# requires:
# - build_mujoco_env

0 comments on commit 516547e

Please sign in to comment.