Fix docker-compose error

Fixes this error:

```
ERROR: yaml.parser.ParserError: while parsing a block mapping
  in "./tools/docker-compose/unit-tests/docker-compose.yml", line 10, column 7
expected <block end>, but found '<scalar>'
  in "./tools/docker-compose/unit-tests/docker-compose.yml", line 11, column 40
```
This commit is contained in:
Shane McDonald 2016-11-10 13:38:15 -05:00
parent f0dad06032
commit 6f39995060

View File

@ -8,7 +8,7 @@ services:
image: gcr.io/ansible-tower-engineering/unit-test-runner:latest
environment:
SWIG_FEATURES: "-cpperraswarn -includeall -I/usr/include/openssl"
TEST_DIRS: "awx/main/tests/unit" "awx/main/tests/functional"
TEST_DIRS: awx/main/tests/unit awx/main/tests/functional
command: ["make test"]
volumes:
- ../../../:/ansible-tower