Skip to content
Snippets Groups Projects
Commit b16fb2ee authored by Jan David Mol's avatar Jan David Mol
Browse files

L2SS-882: Add dependencies to be able to compile pytango. Commit to specific...

L2SS-882: Add dependencies to be able to compile pytango. Commit to specific distros to get correct version of libboost-python
parent d2a61e43
No related branches found
No related tags found
1 merge request!4Added custom LofarDeviceProxy to enhance support for high-dimensional arrays in attribtues
default:
image: python:3.7 # minimum supported version
image: python:3.7-buster # minimum supported version
# Make sure each step is executed in a virtual environment with some basic dependencies present
before_script:
- apt-get update -y && DEBIAN_FRONTEND=noninteractive apt-get install -y libboost-python-dev libtango-dev # Needed to install pytango
- python --version # For debugging
- python -m pip install --upgrade pip
- pip install --upgrade tox
......@@ -47,21 +48,21 @@ run_unit_tests_py37:
- tox -e py37
run_unit_tests_py38:
image: python:3.8
image: python:3.8-buster
stage: test
script:
- echo "run python3.8 unit tests /w coverage"
- tox -e py38
run_unit_tests_py39:
image: python:3.9
image: python:3.9-bullseye
stage: test
script:
- echo "run python3.9 unit tests /w coverage"
- tox -e py39
run_unit_tests_py310:
image: python:3.10
image: python:3.10-bullseye
stage: test
script:
- echo "run python3.10 unit tests /w coverage"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment