Install check toegevoegd

This commit is contained in:
Marcel Nijenhof
2021-07-25 16:37:25 +02:00
parent 0b201743ba
commit 1556832ab2
2 changed files with 22 additions and 1 deletions

View File

@@ -94,6 +94,7 @@ steps:
- pip install python-dateutil - pip install python-dateutil
- python --version - python --version
- python setup.py test - python setup.py test
--- ---
kind: pipeline kind: pipeline
type: exec type: exec
@@ -138,3 +139,23 @@ depends_on:
- Fedora_test - Fedora_test
- docker_python:latest - docker_python:latest
- docker_python:3.6 - docker_python:3.6
---
kind: pipeline
type: docker
name: installCheck
clone:
disable: true
steps:
- name: pip_install
pip install -i https://marceln.org/download/python lmwsip
- name: load_lmwsip
python -c "import lmwsip"
- name: printVersion
python -c "import lmwsip; print(lmwsip.version)"
- name: run_test
python -m unittest -v lmwsip.tests
depend_on:
- Build

View File

@@ -12,7 +12,7 @@ from datetime import datetime, timedelta
from dateutil import tz from dateutil import tz
""" Version info changed by git hook """ """ Version info changed by git hook """
__version__ = '0.1.04' __version__ = '0.1.05'
class LmwSip: class LmwSip:
"""Class to connect to the LMW Standard Interface prototcol (sip) """Class to connect to the LMW Standard Interface prototcol (sip)