Fix up build scripts

This commit is contained in:
Markus Unterwaditzer 2015-09-19 22:41:34 +02:00
parent f0c1898265
commit bcd1bfdc62
2 changed files with 4 additions and 1 deletions

View file

@ -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/

View file

@ -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):