Skip to content

Commit

Permalink
small edit
Browse files Browse the repository at this point in the history
  • Loading branch information
havron committed Dec 11, 2016
1 parent 376e69d commit c9de69a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ install: # prepare mySQL database
- sudo pip install coveralls
before_script:
- docker-compose up -d
- sleep 45

script:
# using first instance of each app server
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ web0: # PORT 8030
- ./web/:/app
ports:
- "8030:8000"
command: bash -c "pip install -r requirements.txt && python manage.py collectstatic --noinput && mod_wsgi-express start-server --reload-on-changes ./web/wsgi.py && python manage.py test"
command: bash -c "pip install -r requirements.txt && python manage.py collectstatic --noinput && mod_wsgi-express start-server --reload-on-changes ./web/wsgi.py"
container_name: web0
environment:
- SELENIUM_HOST=http://selenium:4444/wd/hub
Expand All @@ -102,7 +102,7 @@ web1: # PORT 8031
- ./web/:/app
ports:
- "8031:8000"
command: bash -c "pip install -r requirements.txt && python manage.py collectstatic --noinput && mod_wsgi-express start-server --reload-on-changes ./web/wsgi.py && python manage.py test"
command: bash -c "pip install -r requirements.txt && python manage.py collectstatic --noinput && mod_wsgi-express start-server --reload-on-changes ./web/wsgi.py"
container_name: web1
environment:
- SELENIUM_HOST=http://selenium:4444/wd/hub
Expand All @@ -117,7 +117,7 @@ web2: # PORT 8032
- ./web/:/app
ports:
- "8032:8000"
command: bash -c "pip install -r requirements.txt && python manage.py collectstatic --noinput && mod_wsgi-express start-server --reload-on-changes ./web/wsgi.py && python manage.py test"
command: bash -c "pip install -r requirements.txt && python manage.py collectstatic --noinput && mod_wsgi-express start-server --reload-on-changes ./web/wsgi.py"
container_name: web2
environment:
- SELENIUM_HOST=http://selenium:4444/wd/hub
Expand Down

0 comments on commit c9de69a

Please sign in to comment.