@@ -102,14 +102,14 @@ def test_dist(dist):
102
102
103
103
# Only need to test 'async_types' for non-aliased package
104
104
# since 'aliased_types' tests both async and sync.
105
- # if dist_name == "elasticsearch":
106
- # run(
107
- # venv_python,
108
- # "-m",
109
- # "mypy",
110
- # "--strict",
111
- # os.path.join(base_dir, "test_elasticsearch/test_types/async_types.py"),
112
- # )
105
+ if dist_name == "elasticsearch" :
106
+ run (
107
+ venv_python ,
108
+ "-m" ,
109
+ "mypy" ,
110
+ "--strict" ,
111
+ os .path .join (base_dir , "test_elasticsearch/test_types/async_types.py" ),
112
+ )
113
113
114
114
# Ensure that the namespaces are correct for the dist
115
115
for suffix in ("" , "1" , "2" , "5" , "6" , "7" , "8" , "9" , "10" ):
@@ -123,24 +123,24 @@ def test_dist(dist):
123
123
124
124
# Check that sync types work for 'elasticsearch' and
125
125
# that aliased types work for 'elasticsearchX'
126
- # if dist_name == "elasticsearch":
127
- # run(
128
- # venv_python,
129
- # "-m",
130
- # "mypy",
131
- # "--strict",
132
- # os.path.join(base_dir, "test_elasticsearch/test_types/sync_types.py"),
133
- # )
134
- # else:
135
- # run(
136
- # venv_python,
137
- # "-m",
138
- # "mypy",
139
- # "--strict",
140
- # os.path.join(
141
- # base_dir, "test_elasticsearch/test_types/aliased_types.py"
142
- # ),
143
- # )
126
+ if dist_name == "elasticsearch" :
127
+ run (
128
+ venv_python ,
129
+ "-m" ,
130
+ "mypy" ,
131
+ "--strict" ,
132
+ os .path .join (base_dir , "test_elasticsearch/test_types/sync_types.py" ),
133
+ )
134
+ else :
135
+ run (
136
+ venv_python ,
137
+ "-m" ,
138
+ "mypy" ,
139
+ "--strict" ,
140
+ os .path .join (
141
+ base_dir , "test_elasticsearch/test_types/aliased_types.py"
142
+ ),
143
+ )
144
144
145
145
# Uninstall the dist, see that we can't import things anymore
146
146
run (venv_python , "-m" , "pip" , "uninstall" , "--yes" , dist_name )
0 commit comments