Install check toegevoegd
This commit is contained in:
21
.drone.yml
21
.drone.yml
@@ -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
|
||||||
|
@@ -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)
|
||||||
|
Reference in New Issue
Block a user