Skip to content
Snippets Groups Projects
Commit dd716a82 authored by Maximilian Schaldach's avatar Maximilian Schaldach :cactus:
Browse files

install modules in venv

parent 14b3f3c3
No related branches found
No related tags found
1 merge request!128Install modules in venv to avoid externally managed environment in pipeline
Pipeline #328190 passed
......@@ -37,6 +37,8 @@ avro-thing-creation-e2e:
stage: "end-to-end"
before_script:
- "apk add --no-cache python3"
- "python3 -m venv venv"
- "source venv/bin/activate"
- "python3 -m ensurepip"
- "python3 -m pip install --upgrade pip"
- "python3 -m pip install fastavro paho-mqtt"
......
......@@ -22,6 +22,8 @@ mqtt-service-test:
stage: "integration"
before_script:
- "apk add --no-cache python3"
- "python3 -m venv venv"
- "source venv/bin/activate"
- "python3 -m ensurepip"
- "python3 -m pip install --upgrade pip"
- "python3 -m pip install paho-mqtt"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment