tests: use a local `typing` module with Python 3.4 only
[babeltrace.git] / pyproject.toml
1 [tool.black]
2 include = '''
3 (
4 \.pyi?$
5 | \.py\.in$
6 )
7 '''
8 exclude = '''
9 (
10 src/bindings/python/bt2/build/
11 | src/bindings/python/bt2/setup\.py$
12 | src/bindings/python/bt2/bt2/native_bt\.py$
13 | src/bindings/python/bt2/bt2/version\.py$
14 | tests/utils/python/typing/typing\.py$
15 | tests/utils/python/tap
16
17 )
18 '''
19
20 [tool.isort]
21 profile = "black"
22 extend_skip_glob = [
23 "tests/utils/python/tap",
24 "tests/utils/python/typing/typing.py",
25 ]
26 length_sort = true
This page took 0.030701 seconds and 5 git commands to generate.