Skip to content

Commit

Permalink
[appveyor] Exclude tests due to SSL fails
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
mpsonntag committed Oct 29, 2021
1 parent d44dd56 commit 765f37a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 765f37a

Please sign in to comment.