Skip to content
Snippets Groups Projects

F merge missing list datatype

Merged Florian Spreckelsen requested to merge f-merge-missing-list-datatype into dev
2 unresolved threads
5 files
+ 26
9
Compare changes
  • Side-by-side
  • Inline

Files

+ 17
3
@@ -54,18 +54,25 @@ pylint:
allow_failure: true
# run unit tests
unittest_py3.8:
unittest_py3.7:
tags: [ docker ]
stage: test
needs: [ ]
image: python:3.8
image: python:3.7
script: &python_test_script
# Python docker has problems with tox and pip so use plain pytest here
- touch ~/.pycaosdb.ini
- pip install nose pytest pytest-cov python-dateutil jsonschema==4.0.1
- pip install nose pytest pytest-cov python-dateutil jsonschema>=4.4.0
- pip install .
- python -m pytest unittests
unittest_py3.8:
tags: [ docker ]
stage: test
needs: [ ]
image: python:3.8
script: *python_test_script
# This needs to be changed once Python 3.9 isn't the standard Python in Debian
# anymore.
unittest_py3.9:
@@ -86,6 +93,13 @@ unittest_py3.10:
image: python:3.10
script: *python_test_script
unittest_py3.11:
tags: [ docker ]
stage: test
needs: [ ]
image: python:3.11
script: *python_test_script
# Trigger building of server image and integration tests
trigger_build:
stage: deploy
Loading