Skip to content
Snippets Groups Projects
Commit e973f196 authored by Kevin Lyda's avatar Kevin Lyda :speech_balloon:
Browse files

Need git to do a build.

parent ca5ed85c
No related branches found
No related tags found
No related merge requests found
Pipeline #
...@@ -7,6 +7,7 @@ test:2.7: ...@@ -7,6 +7,7 @@ test:2.7:
image: python:2.7-alpine image: python:2.7-alpine
type: test type: test
script: script:
- apk update && apk add git
- pip install pytest-cov - pip install pytest-cov
- python setup.py install - python setup.py install
- python setup.py test - python setup.py test
...@@ -16,6 +17,7 @@ test:3.3: ...@@ -16,6 +17,7 @@ test:3.3:
image: python:3.3-alpine image: python:3.3-alpine
type: test type: test
script: script:
- apk update && apk add git
- pip install pytest-cov - pip install pytest-cov
- python setup.py install - python setup.py install
- python setup.py test - python setup.py test
...@@ -25,6 +27,7 @@ test:3.4: ...@@ -25,6 +27,7 @@ test:3.4:
image: python:3.4-alpine image: python:3.4-alpine
type: test type: test
script: script:
- apk update && apk add git
- pip install pytest-cov - pip install pytest-cov
- python setup.py install - python setup.py install
- python setup.py test - python setup.py test
...@@ -34,6 +37,7 @@ test:3.5: ...@@ -34,6 +37,7 @@ test:3.5:
image: python:3.5-alpine image: python:3.5-alpine
type: test type: test
script: script:
- apk update && apk add git
- pip install pytest-cov - pip install pytest-cov
- python setup.py install - python setup.py install
- python setup.py test - python setup.py test
...@@ -43,13 +47,14 @@ test:3.6: ...@@ -43,13 +47,14 @@ test:3.6:
image: python:3.6-alpine image: python:3.6-alpine
type: test type: test
script: script:
- apk update && apk add git
- pip install pytest-cov - pip install pytest-cov
- python setup.py install - python setup.py install
- python setup.py test - python setup.py test
- py.test --cov=chkcrontab_lib tests - py.test --cov=chkcrontab_lib tests
test:pypy-2: test:pypy-2:
image: pypy:2-slim image: pypy:2
type: test type: test
script: script:
- pip install pytest-cov - pip install pytest-cov
...@@ -59,7 +64,7 @@ test:pypy-2: ...@@ -59,7 +64,7 @@ test:pypy-2:
# TODO(lyda): Fix test coverage here. # TODO(lyda): Fix test coverage here.
test:pypy-3: test:pypy-3:
image: pypy:3-slim image: pypy:3
type: test type: test
script: script:
- pip install pytest-cov - pip install pytest-cov
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment