Commit e973f196 authored by Kevin Lyda's avatar Kevin Lyda 💬
Browse files

Need git to do a build.

parent ca5ed85c
Pipeline #1051 failed with stage
in 4 minutes and 55 seconds
......@@ -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
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment