File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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'
Original file line number Diff line number Diff line change @@ -32,3 +32,5 @@ tests/docker-test-servers/baikal/baikal-backup/
3232tests /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
Original file line number Diff line number Diff 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]
You can’t perform that action at this time.
0 commit comments