Make script/test use Docker

Really easy to run entire test suite with Docker now. Also switch
Wercker to use the same script.

Signed-off-by: Ben Firshman <ben@firshman.co.uk>
This commit is contained in:
Ben Firshman 2014-09-30 13:48:01 -07:00
parent f407504679
commit a3f70a9f64
2 changed files with 5 additions and 10 deletions

View File

@ -1,4 +1,5 @@
#!/bin/sh
set -e
flake8 fig
PYTHONIOENCODING=ascii nosetests $@
set -ex
docker build -t fig .
docker run -v /var/run/docker.sock:/var/run/docker.sock fig flake8 fig
docker run -v /var/run/docker.sock:/var/run/docker.sock fig nosetests $@

View File

@ -4,12 +4,6 @@ build:
- 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
code: script/test