Skip to content

Commit 765f37a

Browse files
committed
[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.
1 parent d44dd56 commit 765f37a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

appveyor.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,7 @@ install:
4545

4646
test_script:
4747
- python --version
48-
- python -m pytest -v
48+
- python -m pytest -v -k "not handle_include and not handle_repository"
49+
# appveyor issues with SSL certificates; deactivating the affected tests,
50+
# since they run fine on GH actions Windows builds.
51+
# - python -m pytest -v

0 commit comments

Comments
 (0)