Make a maintenance release of vdirsyncer, fix #708

This commit is contained in:
Markus Unterwaditzer 2018-02-05 08:23:45 +01:00
parent cca412e7a8
commit 93df284d3c
4 changed files with 5 additions and 3 deletions

1
.gitignore vendored
View file

@ -6,6 +6,7 @@ build
env
*.egg-info
.cache
.pytest_cache
.eggs
.egg
.xprocess

View file

@ -2,7 +2,8 @@
"branches": {
"only": [
"auto",
"master"
"master",
"/^.*-maintenance$/"
]
},
"cache": "pip",

View file

@ -17,7 +17,7 @@ cfg['git'] = {
}
cfg['branches'] = {
'only': ['auto', 'master']
'only': ['auto', 'master', '/^.*-maintenance$/']
}
cfg['install'] = """

View file

@ -299,7 +299,7 @@ class StorageTests(object):
@given(value=st.one_of(
st.none(),
printable_characters_strategy.filter(lambda x: x.strip() != x)
printable_characters_strategy
))
def test_metadata_normalization(self, requires_metadata, s, value):
x = s.get_meta('displayname')