sqlalchemy: skip stubtest for now (#7310)

Co-authored-by: hauntsaninja <>
This commit is contained in:
Shantanu
2022-02-19 17:47:55 -08:00
committed by GitHub
parent c176911bfb
commit ebdbd564be

View File

@@ -137,6 +137,9 @@ def main() -> NoReturn:
for i, dist in enumerate(dists):
if i % args.num_shards != args.shard_index:
continue
if dist.name == "SQLAlchemy":
# See https://github.com/python/typeshed/issues/7307
continue
if not run_stubtest(dist):
result = 1
sys.exit(result)