Correctie .drone.yml
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Marcel Nijenhof
2021-07-25 17:04:13 +02:00
parent f29d49fafa
commit 707d4fc13a

View File

@@ -146,26 +146,17 @@ type: docker
name: installCheck
steps:
- name: rmGit
- name: install Check
image: python:3.6
# Make sure we run the pip installed version
commands:
- rm -rf lmwsip
- name: pipInstall
commands:
- pip install -i https://marceln.org/download/python lmwsip
- name: load_lmwsip
commands:
- python -c "import lmwsip"
- name: printVersion
commands:
- python -c "import lmwsip; print(lmwsip.version)"
- name: checkVersion
commands:
- >
[ $(python -c "import lmwsip; print(lmwsip.version)") ==
$(python setup.py --version) ]
- name: runTest
commands:
- python -m unittest -v lmwsip.tests
depend_on: