Skip to content
Snippets Groups Projects
Commit 531c80f0 authored by Arseny Antonov's avatar Arseny Antonov Committed by Kirill Yukhin
Browse files

Fix PyPI TLS connection failures in CI on OS X … (#3336)

The reason of the failures is TLSv1.0/TLSv1.1 brownout on the PyPI side,
see [1] for more information.

[1]: pypa/packaging-problems#130
parent 73d75ed1
No related branches found
No related tags found
No related merge requests found
......@@ -47,7 +47,6 @@ test_ubuntu: deps_ubuntu
deps_osx:
brew update
brew install openssl readline curl icu4c --force
pip install -r test-run/requirements.txt --user
test_osx: deps_osx
cmake . -DCMAKE_BUILD_TYPE=RelWithDebInfo
......@@ -58,7 +57,13 @@ test_osx: deps_osx
ulimit -S -n 20480 || :
ulimit -n
make -j8
cd test && python test-run.py -j -1 unit/ app/ app-tap/ box/ box-tap/
virtualenv ./test-env && \
. ./test-env/bin/activate && \
curl --silent --show-error --retry 5 https://bootstrap.pypa.io/get-pip.py | python && \
pip --version && \
pip install -r test-run/requirements.txt && \
cd test && python test-run.py -j -1 unit/ app/ app-tap/ box/ box-tap/ && \
deactivate
coverage_ubuntu: deps_ubuntu
cmake . -DCMAKE_BUILD_TYPE=Debug -DENABLE_GCOV=ON
......
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