add tests for CI

This commit is contained in:
tifayuki 2016-04-26 12:51:36 +02:00
commit ed92451219
3 changed files with 11 additions and 0 deletions

6
Dockerfile Normal file
View file

@ -0,0 +1,6 @@
FROM python:2.7.11-alpine
ADD . /sdk
WORKDIR sdk
RUN python setup.py install

3
docker-compose.test.yml Normal file
View file

@ -0,0 +1,3 @@
sut:
build: .
command: python setup.py test

2
hooks/push Executable file
View file

@ -0,0 +1,2 @@
#!/bin/sh
echo "Skipping push the image"