mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
--use-mirrors
It seems to be deprecated, but everybody seems to use it.
This commit is contained in:
parent
dc86368997
commit
ea3e82ccba
3 changed files with 3 additions and 4 deletions
|
|
@ -5,7 +5,6 @@ env:
|
|||
- DAV_SERVER=radicale-git
|
||||
|
||||
install:
|
||||
- "pip install ."
|
||||
- "sh install-deps.sh"
|
||||
|
||||
script: py.test
|
||||
|
|
|
|||
|
|
@ -19,6 +19,5 @@ Run `vdirsyncer --help`.
|
|||
|
||||
## How to run the tests
|
||||
|
||||
pip install .
|
||||
sh install_deps.sh
|
||||
py.test
|
||||
|
|
|
|||
|
|
@ -1,8 +1,9 @@
|
|||
pip install -r requirements.txt
|
||||
pip install --use-mirrors .
|
||||
pip install --use-mirrors -r requirements.txt
|
||||
[[ -z "$DAV_SERVER" ]] && DAV_SERVER=radicale
|
||||
case "$DAV_SERVER" in
|
||||
"radicale")
|
||||
pip install radicale
|
||||
pip install --use-mirrors radicale
|
||||
;;
|
||||
"radicale-git")
|
||||
pip install git+https://github.com/Kozea/Radicale.git
|
||||
|
|
|
|||
Loading…
Reference in a new issue