Skip to content
Snippets Groups Projects

F py37

Merged Florian Spreckelsen requested to merge f-py37 into dev
4 files
+ 14
6
Compare changes
  • Side-by-side
  • Inline
Files
4
+ 10
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:
Loading