mirror of
https://github.com/Kozea/Radicale.git
synced 2025-07-02 16:58:30 +00:00
Merge branch 'master' of github.com:Kozea/radicale
This commit is contained in:
commit
22a356bd06
2 changed files with 21 additions and 1 deletions
20
.travis.yml
Normal file
20
.travis.yml
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
language: python
|
||||||
|
|
||||||
|
python:
|
||||||
|
- 2.6
|
||||||
|
- 2.7
|
||||||
|
- 3.2
|
||||||
|
- 3.3
|
||||||
|
- 3.4
|
||||||
|
- pypy
|
||||||
|
|
||||||
|
install:
|
||||||
|
- pip install sqlalchemy
|
||||||
|
- pip install nose-cov
|
||||||
|
- pip install pam
|
||||||
|
- pip install requests
|
||||||
|
- pip install dulwich
|
||||||
|
|
||||||
|
script: nosetests
|
||||||
|
|
||||||
|
sudo: false
|
|
@ -575,7 +575,7 @@ def _item_response(href, found_props=(), not_found_props=(), found_item=True):
|
||||||
propstat = ET.Element(_tag("D", "propstat"))
|
propstat = ET.Element(_tag("D", "propstat"))
|
||||||
status = ET.Element(_tag("D", "status"))
|
status = ET.Element(_tag("D", "status"))
|
||||||
status.text = _response(404)
|
status.text = _response(404)
|
||||||
prop = ET.Element(_Tag("D", "prop"))
|
prop = ET.Element(_tag("D", "prop"))
|
||||||
for p in not_found_props:
|
for p in not_found_props:
|
||||||
prop.append(p)
|
prop.append(p)
|
||||||
propstat.append(prop)
|
propstat.append(prop)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue