Skip to content

Commit c43aeae

Browse files
authored
Merge pull request #1307 from mercedes-benz/tobiasgiese/test-update-calico-v125
🐛 Update calico manifest for e2e testing
2 parents f040fc4 + ddd9438 commit c43aeae

File tree

3 files changed

+667
-65
lines changed

3 files changed

+667
-65
lines changed

scripts/ci-conformance.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,12 @@ cleanup() {
4545
}
4646
trap cleanup EXIT
4747

48-
#Install requests module explicitly for HTTP calls
48+
# Set correct pip3.7 location for python3.
49+
if ! test -f /usr/bin/pip3.7 && test -f /usr/local/bin/pip3.7; then
50+
ln -s /usr/local/bin/pip3.7 /usr/bin/pip3.7
51+
fi
52+
53+
# Install requests module explicitly for HTTP calls.
4954
python3 -m pip install requests
5055

5156
# If BOSKOS_HOST is set then acquire a resource of type ${RESOURCE_TYPE} from Boskos.

scripts/ci-e2e.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,12 @@ cleanup() {
4646
}
4747
trap cleanup EXIT
4848

49-
#Install requests module explicitly for HTTP calls
49+
# Set correct pip3.7 location for python3.
50+
if ! test -f /usr/bin/pip3.7 && test -f /usr/local/bin/pip3.7; then
51+
ln -s /usr/local/bin/pip3.7 /usr/bin/pip3.7
52+
fi
53+
54+
# Install requests module explicitly for HTTP calls.
5055
python3 -m pip install requests
5156

5257
# If BOSKOS_HOST is set then acquire a resource of type ${RESOURCE_TYPE} from Boskos.

0 commit comments

Comments
 (0)