Skip to content

Commit e5620b9

Browse files
committed
Drop AppVeyor
1 parent f711b4e commit e5620b9

File tree

4 files changed

+5
-72
lines changed

4 files changed

+5
-72
lines changed

appveyor.yml

Lines changed: 0 additions & 68 deletions
This file was deleted.

docs/development.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ The development version
55
.. image:: https://github.com/libgit2/pygit2/actions/workflows/tests.yml/badge.svg
66
:target: https://github.com/libgit2/pygit2/actions/workflows/tests.yml
77

8-
.. image:: https://ci.appveyor.com/api/projects/status/edmwc0dctk5nacx0/branch/master?svg=true
9-
:target: https://ci.appveyor.com/project/jdavid/pygit2/branch/master
8+
.. image:: https://github.com/libgit2/pygit2/actions/workflows/wheels.yml/badge.svg
9+
:target: https://github.com/libgit2/pygit2/actions/workflows/wheels.yml
1010

1111
.. contents:: Contents
1212
:local:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def get_file_list(self) -> None:
5858
sys.exit()
5959

6060
def exclude(line: str) -> bool:
61-
for prefix in ['.', 'appveyor.yml', 'docs/', 'misc/']:
61+
for prefix in ['.', 'docs/', 'misc/']:
6262
if line.startswith(prefix):
6363
return True
6464
return False

test/conftest.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ def global_git_config() -> None:
2222
for level in levels:
2323
pygit2.settings.search_path[level] = ''
2424

25-
# Fix tests running in AppVeyor
25+
# Fix tests running in Windows
26+
# XXX Still needed now we have moved to GitHub CI?
2627
if platform.system() == 'Windows':
2728
pygit2.option(pygit2.enums.Option.SET_OWNER_VALIDATION, False)
2829

0 commit comments

Comments
 (0)