summaryrefslogtreecommitdiffstats
path: root/tools/docker-compose
diff options
context:
space:
mode:
authorShane McDonald <shanemcd@redhat.com>2016-11-10 19:38:15 +0100
committerShane McDonald <shanemcd@redhat.com>2016-11-10 19:38:15 +0100
commit6f399950606c3c1c256146ecf5ae12680fd88cee (patch)
tree86ecc86c24adb855840c380aad0d21a20a1028e2 /tools/docker-compose
parent.dockerignore (diff)
downloadawx-6f399950606c3c1c256146ecf5ae12680fd88cee.tar.xz
awx-6f399950606c3c1c256146ecf5ae12680fd88cee.zip
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 ```
Diffstat (limited to 'tools/docker-compose')
-rw-r--r--tools/docker-compose/unit-tests/docker-compose.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/docker-compose/unit-tests/docker-compose.yml b/tools/docker-compose/unit-tests/docker-compose.yml
index 08c9235f9a..9e59aadd5f 100644
--- a/tools/docker-compose/unit-tests/docker-compose.yml
+++ b/tools/docker-compose/unit-tests/docker-compose.yml
@@ -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