mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +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
|
- DAV_SERVER=radicale-git
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- "pip install ."
|
|
||||||
- "sh install-deps.sh"
|
- "sh install-deps.sh"
|
||||||
|
|
||||||
script: py.test
|
script: py.test
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,5 @@ Run `vdirsyncer --help`.
|
||||||
|
|
||||||
## How to run the tests
|
## How to run the tests
|
||||||
|
|
||||||
pip install .
|
|
||||||
sh install_deps.sh
|
sh install_deps.sh
|
||||||
py.test
|
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
|
[[ -z "$DAV_SERVER" ]] && DAV_SERVER=radicale
|
||||||
case "$DAV_SERVER" in
|
case "$DAV_SERVER" in
|
||||||
"radicale")
|
"radicale")
|
||||||
pip install radicale
|
pip install --use-mirrors radicale
|
||||||
;;
|
;;
|
||||||
"radicale-git")
|
"radicale-git")
|
||||||
pip install git+https://github.com/Kozea/Radicale.git
|
pip install git+https://github.com/Kozea/Radicale.git
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue