Merge pull request #497 from bfirsh/wercker

Add wercker.yml
This commit is contained in:
Aanand Prasad 2014-09-24 10:51:56 -07:00
commit c37dc558fb
2 changed files with 15 additions and 4 deletions

View File

@ -1,6 +1,5 @@
FROM ubuntu:14.04
RUN apt-get update -qq && apt-get install -qy python python-pip python-dev git
RUN useradd -d /home/user -m -s /bin/bash user
WORKDIR /code/
@ -12,6 +11,3 @@ RUN pip install -r requirements-dev.txt
ADD . /code/
RUN python setup.py install
RUN chown -R user /code/
USER user

15
wercker.yml Normal file
View File

@ -0,0 +1,15 @@
box: wercker-labs/docker
build:
steps:
- script:
name: validate DCO
code: script/validate-dco
- script:
name: build
code: docker build -t fig .
- script:
name: flake8
code: docker run -v /var/run/docker.sock:/var/run/docker.sock fig flake8 fig
- script:
name: run tests
code: docker run -v /var/run/docker.sock:/var/run/docker.sock fig nosetests