File tree 4 files changed +6
-4
lines changed
4 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,6 @@ omit = [
101
101
]
102
102
include = [
103
103
" httpcore/*" ,
104
- " scripts/*" ,
105
104
" tests/*" ,
106
105
]
107
106
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ export PREFIX=""
4
4
if [ -d ' venv' ] ; then
5
5
export PREFIX=" venv/bin/"
6
6
fi
7
- export SOURCE_FILES=" httpcore tests"
7
+ export SOURCE_FILES=" httpcore scripts tests"
8
8
9
9
set -x
10
10
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ export PREFIX=""
4
4
if [ -d ' venv' ] ; then
5
5
export PREFIX=" venv/bin/"
6
6
fi
7
- export SOURCE_FILES=" httpcore tests"
7
+ export SOURCE_FILES=" httpcore scripts tests"
8
8
9
9
set -x
10
10
Original file line number Diff line number Diff line change 5
5
from pprint import pprint
6
6
7
7
SUBS = [
8
- ('from .._backends.auto import AutoBackend' , 'from .._backends.sync import SyncBackend' ),
8
+ (
9
+ "from .._backends.auto import AutoBackend" ,
10
+ "from .._backends.sync import SyncBackend" ,
11
+ ),
9
12
("import trio as concurrency" , "from tests import concurrency" ),
10
13
("AsyncIterator" , "Iterator" ),
11
14
("Async([A-Z][A-Za-z0-9_]*)" , r"\2" ),
You can’t perform that action at this time.
0 commit comments