mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-21 05:34:18 +08:00
Add gitutils tests (#71580)
Summary: Test PeekableIterator behavior Add `.github/scripts/test_*.py` to list of tests run by test_tools workflow and pin Python version to 3.7 in test_tools workflow Change PeekableIterator inheritance from collections.abc.Iterator, to typing.Iterator, which is a correct alias starting from Python-3.7 Pull Request resolved: https://github.com/pytorch/pytorch/pull/71580 Reviewed By: bigfootjon Differential Revision: D33690659 Pulled By: malfet fbshipit-source-id: 71f270b15138230772e2eed0da66cdfcb34825cc (cherry picked from commit 42abb07396fa90272afb0b56508bd3a1f5c4ccbe)
This commit is contained in:
committed by
Eli Uriegas
parent
08b389fc36
commit
bc608b6e16
3
.github/scripts/gitutils.py
vendored
3
.github/scripts/gitutils.py
vendored
@ -1,9 +1,8 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
from collections import defaultdict
|
||||
from collections.abc import Iterator
|
||||
from datetime import datetime
|
||||
from typing import cast, Any, Dict, List, Optional, Tuple, Union
|
||||
from typing import cast, Any, Dict, Iterator, List, Optional, Tuple, Union
|
||||
import os
|
||||
import re
|
||||
|
||||
|
Reference in New Issue
Block a user