Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bugfix/config_private-fixed-missing-comma #345

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions tests/conf_private.py.EXAMPLE
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,15 @@ from tests import compatibility_issues

## Define your primary caldav server here
caldav_servers = [
{
## Set enable to False if you don't want to use a server
'enable': True
{
## Set enable to False if you don't want to use a server
'enable': True,

## This is all that is really needed - url, username and
## password. (the URL may even include username and password)
'url': 'https://some.server.example.com',
'username': 'testuser',
'password': 'hunter2',

## skip ssl cert verification, for self-signed certificates
## (sort of moot nowadays with letsencrypt freely available)
#'ssl_cert_verify': False
Expand All @@ -27,8 +26,8 @@ caldav_servers = [
## skipping (parts) of certain tests. See
## tests/compatibility_issues.py for premade lists
#'incompatibilities': compatibility_issues.nextcloud
'incompatibilities': [],
}
'incompatibilities': [],
}
]


Expand Down
Loading