mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +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
|
||||
*.egg-info
|
||||
.cache
|
||||
.pytest_cache
|
||||
.eggs
|
||||
.egg
|
||||
.xprocess
|
||||
|
|
|
|||
|
|
@ -2,7 +2,8 @@
|
|||
"branches": {
|
||||
"only": [
|
||||
"auto",
|
||||
"master"
|
||||
"master",
|
||||
"/^.*-maintenance$/"
|
||||
]
|
||||
},
|
||||
"cache": "pip",
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ cfg['git'] = {
|
|||
}
|
||||
|
||||
cfg['branches'] = {
|
||||
'only': ['auto', 'master']
|
||||
'only': ['auto', 'master', '/^.*-maintenance$/']
|
||||
}
|
||||
|
||||
cfg['install'] = """
|
||||
|
|
|
|||
|
|
@ -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')
|
||||
|
|
|
|||
Loading…
Reference in a new issue