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