diff --git a/.circleci/config.yml b/.circleci/config.yml index e165f5e..3801ca5 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -74,6 +74,21 @@ jobs: - run: make -e storage-test + davical: + docker: + - image: circleci/python:3.6 + environment: + <<: *basic_env + DAV_SERVER: davical + steps: + - checkout + - *restore_caches + - *basic_setup + - run: make -e install-dev install-test + - *save_caches + + - run: make -e storage-test + style: docker: - image: circleci/python:3.6 @@ -216,6 +231,7 @@ workflows: - nextcloud - fastmail - icloud + - davical - style - py34-minimal - py34-release diff --git a/tests/storage/servers/davical/__init__.py b/tests/storage/servers/davical/__init__.py index 6f7cbfe..6e3a375 100644 --- a/tests/storage/servers/davical/__init__.py +++ b/tests/storage/servers/davical/__init__.py @@ -7,7 +7,7 @@ try: # Those credentials are configured through the Travis UI 'username': os.environ['DAVICAL_USERNAME'].strip(), 'password': os.environ['DAVICAL_PASSWORD'].strip(), - 'url': 'https://brutus.lostpackets.de/davical-test/caldav.php/', + 'url': 'https://caesar.lostpackets.de/davical-test/caldav.php/', } except KeyError as e: caldav_args = None