From 07ee064e9ed446bc0678fb133e64eadaa9ed0be8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Cepl?= Date: Wed, 14 Oct 2015 08:39:02 +0200 Subject: Add .travis.yml and .gitlab-ci.yml Fixes #50 --- .gitlab-ci.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .gitlab-ci.yml (limited to '.gitlab-ci.yml') diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..8d25f73 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,29 @@ +image: python:2.7 + +test: + script: + - apt-get -y swig libssl-dev libssl1.0.0 + - python setup.py test + +# language: python +# +# addons: +# apt: +# packages: +# - swig +# - libssl-dev +# - libssl1.0.0 +# +# sudo: false +# +# python: +# - 2.6 +# - 2.7 +# +# before_script: +# - '[ "${TRAVIS_PYTHON_VERSION}" = "2.6" ] && pip install --use-mirrors unittest2 || /bin/true' +# +# install: +# - python setup.py install +# +# script: python setup.py test -- cgit v1.2.1