23 lines
345 B
YAML
23 lines
345 B
YAML
language: python
|
|
python:
|
|
- 2.7
|
|
|
|
services:
|
|
- docker
|
|
|
|
install:
|
|
- docker build -t php .
|
|
- docker run -d -p 127.0.0.1:80:80 --name nginx-php-fpm php
|
|
|
|
before_script:
|
|
- pip install -r requirements.txt
|
|
|
|
script:
|
|
- docker ps
|
|
- sleep 5
|
|
- curl -I 127.0.0.1:80
|
|
- python tests.py
|
|
|
|
notifications:
|
|
slack: ngineered:EIKJFrzibOe0TwUhLXNe8Q2Q
|