We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a98a145 + 3d86df0 commit a2beea0Copy full SHA for a2beea0
tools/check-cherry-picks.sh
@@ -4,6 +4,11 @@
4
# to verify that they're all on either master or stable/ branches
5
#
6
7
+# Allow this script to be disabled by a simple env var
8
+if [ ${DISABLE_CHERRY_PICK_CHECK:-0} -eq 1 ]; then
9
+ exit 0
10
+fi
11
+
12
commit_hash=""
13
14
# Check if the patch is a merge patch by counting the number of parents.
tox.ini
@@ -49,6 +49,8 @@ commands =
49
description =
50
Run style checks.
51
envdir = {toxworkdir}/shared
52
+passenv =
53
+ DISABLE_CHERRY_PICK_CHECK
54
commands =
55
{[testenv:mypy]commands}
56
bash tools/flake8wrap.sh {posargs}
0 commit comments