mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
Fix up build scripts
This commit is contained in:
parent
f0c1898265
commit
bcd1bfdc62
2 changed files with 4 additions and 1 deletions
3
Makefile
3
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/
|
||||
|
||||
|
|
|
|||
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Reference in a new issue