Skip to content

Commit 93df284

Browse files
committed
Make a maintenance release of vdirsyncer, fix #708
1 parent cca412e commit 93df284

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ build
66
env
77
*.egg-info
88
.cache
9+
.pytest_cache
910
.eggs
1011
.egg
1112
.xprocess

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
"branches": {
33
"only": [
44
"auto",
5-
"master"
5+
"master",
6+
"/^.*-maintenance$/"
67
]
78
},
89
"cache": "pip",

scripts/make_travisconf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
}
1818

1919
cfg['branches'] = {
20-
'only': ['auto', 'master']
20+
'only': ['auto', 'master', '/^.*-maintenance$/']
2121
}
2222

2323
cfg['install'] = """

tests/storage/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ def test_metadata(self, requires_metadata, s):
299299

300300
@given(value=st.one_of(
301301
st.none(),
302-
printable_characters_strategy.filter(lambda x: x.strip() != x)
302+
printable_characters_strategy
303303
))
304304
def test_metadata_normalization(self, requires_metadata, s, value):
305305
x = s.get_meta('displayname')

0 commit comments

Comments
 (0)