From 765f37aecbfb962654cd4edbd879f804dbc06126 Mon Sep 17 00:00:00 2001 From: "M. Sonntag" Date: Fri, 29 Oct 2021 13:39:54 +0200 Subject: [PATCH] [appveyor] Exclude tests due to SSL fails The tests test_handle_include and test_handle_repository from the TestVersionConverter class consistently fail with an SSL certification failure on the appveyor Windows builds. Upgrading the "certifi" package does not resolve this issue. Since these tests run fine on Linux, Mac and on the GH actions Windows builds, these tests are deactivated for Appveyor builds. --- appveyor.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index d30a8695..346ea04e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -45,4 +45,7 @@ install: test_script: - python --version - - python -m pytest -v + - python -m pytest -v -k "not handle_include and not handle_repository" +# appveyor issues with SSL certificates; deactivating the affected tests, +# since they run fine on GH actions Windows builds. +# - python -m pytest -v \ No newline at end of file