From bcd1bfdc62d4e438e6063a03ed714a36e702e7aa Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Sat, 19 Sep 2015 22:41:34 +0200 Subject: [PATCH] Fix up build scripts --- Makefile | 3 +++ tests/storage/dav/__init__.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 182bdae..f8df749 100644 --- a/Makefile +++ b/Makefile @@ -55,6 +55,9 @@ docs: cd docs make html +sh: # open subshell with default test config + $$SHELL; + linkcheck: sphinx-build -W -b linkcheck ./docs/ ./docs/_build/linkcheck/ diff --git a/tests/storage/dav/__init__.py b/tests/storage/dav/__init__.py index c9780b9..76bba50 100644 --- a/tests/storage/dav/__init__.py +++ b/tests/storage/dav/__init__.py @@ -13,7 +13,7 @@ from vdirsyncer.storage.base import Item from .. import StorageTests -dav_server = os.environ.get('DAV_SERVER', '').strip() or 'radicale' +dav_server = os.environ['DAV_SERVER'] def _get_server_mixin(server_name):