From e973f196deb27db7e32c304aade1ed4642f46088 Mon Sep 17 00:00:00 2001 From: Kevin Lyda <kevin@ie.suberic.net> Date: Wed, 4 Jan 2017 18:32:46 +0000 Subject: [PATCH] Need git to do a build. --- .gitlab-ci.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9b429e5..7cbc964 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,6 +7,7 @@ test:2.7: image: python:2.7-alpine type: test script: + - apk update && apk add git - pip install pytest-cov - python setup.py install - python setup.py test @@ -16,6 +17,7 @@ test:3.3: image: python:3.3-alpine type: test script: + - apk update && apk add git - pip install pytest-cov - python setup.py install - python setup.py test @@ -25,6 +27,7 @@ test:3.4: image: python:3.4-alpine type: test script: + - apk update && apk add git - pip install pytest-cov - python setup.py install - python setup.py test @@ -34,6 +37,7 @@ test:3.5: image: python:3.5-alpine type: test script: + - apk update && apk add git - pip install pytest-cov - python setup.py install - python setup.py test @@ -43,13 +47,14 @@ test:3.6: image: python:3.6-alpine type: test script: + - apk update && apk add git - pip install pytest-cov - python setup.py install - python setup.py test - py.test --cov=chkcrontab_lib tests test:pypy-2: - image: pypy:2-slim + image: pypy:2 type: test script: - pip install pytest-cov @@ -59,7 +64,7 @@ test:pypy-2: # TODO(lyda): Fix test coverage here. test:pypy-3: - image: pypy:3-slim + image: pypy:3 type: test script: - pip install pytest-cov -- GitLab