mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
Make a maintenance release of vdirsyncer, fix #708
This commit is contained in:
parent
cca412e7a8
commit
93df284d3c
4 changed files with 5 additions and 3 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -6,6 +6,7 @@ build
|
||||||
env
|
env
|
||||||
*.egg-info
|
*.egg-info
|
||||||
.cache
|
.cache
|
||||||
|
.pytest_cache
|
||||||
.eggs
|
.eggs
|
||||||
.egg
|
.egg
|
||||||
.xprocess
|
.xprocess
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,8 @@
|
||||||
"branches": {
|
"branches": {
|
||||||
"only": [
|
"only": [
|
||||||
"auto",
|
"auto",
|
||||||
"master"
|
"master",
|
||||||
|
"/^.*-maintenance$/"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"cache": "pip",
|
"cache": "pip",
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@ cfg['git'] = {
|
||||||
}
|
}
|
||||||
|
|
||||||
cfg['branches'] = {
|
cfg['branches'] = {
|
||||||
'only': ['auto', 'master']
|
'only': ['auto', 'master', '/^.*-maintenance$/']
|
||||||
}
|
}
|
||||||
|
|
||||||
cfg['install'] = """
|
cfg['install'] = """
|
||||||
|
|
|
||||||
|
|
@ -299,7 +299,7 @@ class StorageTests(object):
|
||||||
|
|
||||||
@given(value=st.one_of(
|
@given(value=st.one_of(
|
||||||
st.none(),
|
st.none(),
|
||||||
printable_characters_strategy.filter(lambda x: x.strip() != x)
|
printable_characters_strategy
|
||||||
))
|
))
|
||||||
def test_metadata_normalization(self, requires_metadata, s, value):
|
def test_metadata_normalization(self, requires_metadata, s, value):
|
||||||
x = s.get_meta('displayname')
|
x = s.get_meta('displayname')
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue