projects
/
platform
/
upstream
/
pytorch.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0e857bf
)
Fix test reporting git merge-base (#65787)
author
Zhuojie Zhou
<zhouzhuojie@users.noreply.github.com>
Tue, 28 Sep 2021 22:48:32 +0000
(15:48 -0700)
committer
GitHub
<noreply@github.com>
Tue, 28 Sep 2021 22:48:32 +0000
(15:48 -0700)
tools/stats/print_test_stats.py
patch
|
blob
|
history
diff --git
a/tools/stats/print_test_stats.py
b/tools/stats/print_test_stats.py
index
8c1f797
..
7c21491
100755
(executable)
--- a/
tools/stats/print_test_stats.py
+++ b/
tools/stats/print_test_stats.py
@@
-108,7
+108,7
@@
def plural(n: int) -> str:
def get_base_commit(sha1: str) -> str:
return subprocess.check_output(
- ["git", "merge-base", sha1, "origin/
master
"],
+ ["git", "merge-base", sha1, "origin/
release/1.10
"],
encoding="ascii",
).strip()