mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +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
|
cd docs
|
||||||
make html
|
make html
|
||||||
|
|
||||||
|
sh: # open subshell with default test config
|
||||||
|
$$SHELL;
|
||||||
|
|
||||||
linkcheck:
|
linkcheck:
|
||||||
sphinx-build -W -b linkcheck ./docs/ ./docs/_build/linkcheck/
|
sphinx-build -W -b linkcheck ./docs/ ./docs/_build/linkcheck/
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@ from vdirsyncer.storage.base import Item
|
||||||
from .. import StorageTests
|
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):
|
def _get_server_mixin(server_name):
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue