File tree Expand file tree Collapse file tree 3 files changed +2
-11
lines changed Expand file tree Collapse file tree 3 files changed +2
-11
lines changed Original file line number Diff line number Diff line change @@ -29,11 +29,6 @@ tasks:
29
29
export PATH=$PATH:~/.local/bin/
30
30
make -e ci-test
31
31
make -e ci-test-storage
32
- - style : |
33
- cd vdirsyncer
34
- # Non-system python is used for packages:
35
- export PATH=$PATH:~/.local/bin/
36
- make -e style
37
32
- check-secrets : |
38
33
# Stop here if this is a PR. PRs can't run with the below secrets.
39
34
[ -f ~/fastmail-secrets ] || complete-build
Original file line number Diff line number Diff line change 23
23
- id : isort
24
24
name : isort (python)
25
25
- repo : https://github.com/asottile/pyupgrade
26
- rev : v2.25 .0
26
+ rev : v2.26 .0
27
27
hooks :
28
28
- id : pyupgrade
29
29
args : [--py37-plus]
Original file line number Diff line number Diff line change 1
1
import logging
2
- import sys
3
2
4
3
import aiohttp
5
4
import click_log
@@ -103,10 +102,7 @@ def test_open_graphical_browser(monkeypatch):
103
102
104
103
# Just assert that this internal attribute still exists and behaves the way
105
104
# expected
106
- if sys .version_info < (3 , 7 ):
107
- iter (webbrowser ._tryorder )
108
- else :
109
- assert webbrowser ._tryorder is None
105
+ assert webbrowser ._tryorder is None
110
106
111
107
monkeypatch .setattr ("webbrowser._tryorder" , [])
112
108
You can’t perform that action at this time.
0 commit comments