Skip to content

Commit 90102e3

Browse files
tobixenclaude
andcommitted
Update CI, tooling, and project configuration
- Re-enable aardvark.co.nz in linkcheck workflow - Update .gitignore - Update pyproject.toml (deps, ruff config, etc.) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 722e959 commit 90102e3

3 files changed

Lines changed: 13 additions & 2 deletions

File tree

.github/workflows/linkcheck.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
with:
1313
fail: true
1414
args: >-
15-
--timeout 10
16-
--max-retries 2
15+
--timeout 20
16+
--max-retries 3
1717
'**/*.md'
1818
'**/*.rst'

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,5 @@ tests/docker-test-servers/baikal/baikal-backup/
3232
tests/docker-test-servers/*/baikal-backup/
3333
# But keep the pre-configured Specific directory for Baikal
3434
!tests/docker-test-servers/baikal/Specific/
35+
# Local test server configuration (may contain credentials)
36+
tests/caldav_test_servers.yaml

pyproject.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,9 @@ filterwarnings = [
160160
# Treat all warnings as errors by default
161161
"error",
162162

163+
# Allow missing _version.py warning during development/testing (generated by hatch-vcs on build/install)
164+
"ignore:You need to install the `build` package:UserWarning",
165+
163166
# Ignore deprecation warnings from external libraries we can't control
164167
# https://github.com/jawah/niquests/pull/327 https://github.com/jawah/niquests/issues/326
165168
"ignore:.*asyncio.iscoroutinefunction.*:DeprecationWarning:niquests",
@@ -171,4 +174,10 @@ filterwarnings = [
171174

172175
# Radicale uses deprecated importlib.abc.Traversable (Python 3.14 removal)
173176
"ignore:.*importlib.abc.Traversable.*:DeprecationWarning",
177+
178+
# Show conf_private.py deprecation warning once (not as error) during migration period
179+
"once:conf_private.py is deprecated:DeprecationWarning",
180+
181+
# Zimbra test server uses HTTPS with self-signed cert (ssl_verify_cert=False)
182+
"ignore:Unverified HTTPS request:urllib3_future.exceptions.InsecureRequestWarning",
174183
]

0 commit comments

Comments
 (0)