Skip to content

Commit fac6703

Browse files
committed
restore mypy.ini for bigtable
1 parent bd54071 commit fac6703

1 file changed

Lines changed: 38 additions & 0 deletions

File tree

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
[mypy]
2+
python_version = 3.13
3+
namespace_packages = True
4+
check_untyped_defs = True
5+
warn_unreachable = True
6+
disallow_any_generics = True
7+
exclude = tests/unit/gapic/
8+
9+
[mypy-grpc.*]
10+
ignore_missing_imports = True
11+
12+
[mypy-google.auth.*]
13+
ignore_missing_imports = True
14+
15+
[mypy-google.iam.*]
16+
ignore_missing_imports = True
17+
18+
[mypy-google.longrunning.*]
19+
ignore_missing_imports = True
20+
21+
[mypy-google.oauth2.*]
22+
ignore_missing_imports = True
23+
24+
[mypy-google.rpc.*]
25+
ignore_missing_imports = True
26+
27+
[mypy-proto.*]
28+
ignore_missing_imports = True
29+
30+
[mypy-pytest]
31+
ignore_missing_imports = True
32+
33+
[mypy-google.cloud.*]
34+
ignore_errors = True
35+
36+
# only verify data client
37+
[mypy-google.cloud.bigtable.data.*]
38+
ignore_errors = False

0 commit comments

Comments
 (0)