diff --git a/.travis-install-kludge.sh b/.travis-install-kludge.sh deleted file mode 100755 index 1ab3ed3..0000000 --- a/.travis-install-kludge.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/bash - -# GitPython does not currently support python3 and -# may be replaced by pygit2. -# https://fedoraproject.org/wiki/User:Churchyard/python3 -if [[ $(python --version 2>&1) =~ ^2 ]]; then - pip install 'GitPython >= 0.2.0' --use-mirrors --pre -fi diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 69f0204..0000000 --- a/.travis.yml +++ /dev/null @@ -1,12 +0,0 @@ -# http://docs.travis-ci.com/user/languages/python/ -language: python -python: - - "2.6" - - "2.7" - - "3.3" - -install: - - ./.travis-install-kludge.sh - - pip install 'pep8' --use-mirrors - -script: nosetests test/unit diff --git a/wercker.yml b/wercker.yml new file mode 100644 index 0000000..5d86c56 --- /dev/null +++ b/wercker.yml @@ -0,0 +1,9 @@ +box: wercker-labs/docker +build: + steps: + - script: + name: print the docker version + code: docker version + - script: + name: run the docker test suite + code: hacking/runtests.sh