From 6d557bc0cab88f9258d8f840f70b0540a5e9c913 Mon Sep 17 00:00:00 2001 From: Thales Macedo Garitezi Date: Fri, 4 Feb 2022 10:17:53 -0300 Subject: [PATCH] ci(pytest): pin pytest version at 6.2.5 After a major version release (7.0.0), our current FVT tests all failed due to some change in the lib. Our pytest version in CI was not pinned, and picked this update up. --- .ci/docker-compose-file/python/pytest.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/docker-compose-file/python/pytest.sh b/.ci/docker-compose-file/python/pytest.sh index c079a65a4..04b0aa1b2 100755 --- a/.ci/docker-compose-file/python/pytest.sh +++ b/.ci/docker-compose-file/python/pytest.sh @@ -19,7 +19,7 @@ fi apk update && apk add git curl git clone -b develop-4.0 https://github.com/emqx/paho.mqtt.testing.git /paho.mqtt.testing -pip install pytest +pip install pytest==6.2.5 pytest -v /paho.mqtt.testing/interoperability/test_client/V5/test_connect.py -k test_basic --host "$TARGET_HOST" RESULT=$?