You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`PY_VERSION` is only used when `TEST_TYPE` environment variable is set
to `unit`. We can set `PY_VERSION` to `unused` otherwise to reflect that
it is not being. See
googleapis#13775 to follow
up on supporting `PY_VERSION` for all values of `TEST_TYPE`, rather than
just `unit`
Copy file name to clipboardExpand all lines: .github/workflows/docs.yml
+8-4Lines changed: 8 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -63,7 +63,8 @@ jobs:
63
63
env:
64
64
BUILD_TYPE: presubmit
65
65
TEST_TYPE: docs
66
-
PY_VERSION: "3.10"
66
+
# TODO(https://github.com/googleapis/google-cloud-python/issues/13775): Specify `PY_VERSION` rather than relying on the default python version of the nox session.
67
+
PY_VERSION: "unused"
67
68
run: |
68
69
ci/run_conditional_tests.sh
69
70
docs-warnings:
@@ -91,7 +92,8 @@ jobs:
91
92
env:
92
93
BUILD_TYPE: presubmit
93
94
TEST_TYPE: docs
94
-
PY_VERSION: "3.10"
95
+
# TODO(https://github.com/googleapis/google-cloud-python/issues/13775): Specify `PY_VERSION` rather than relying on the default python version of the nox session.
96
+
PY_VERSION: "unused"
95
97
run: |
96
98
ci/run_conditional_tests.sh
97
99
docfx:
@@ -117,7 +119,8 @@ jobs:
117
119
env:
118
120
BUILD_TYPE: presubmit
119
121
TEST_TYPE: docfx
120
-
PY_VERSION: "3.10"
122
+
# TODO(https://github.com/googleapis/google-cloud-python/issues/13775): Specify `PY_VERSION` rather than relying on the default python version of the nox session.
123
+
PY_VERSION: "unused"
121
124
run: |
122
125
ci/run_conditional_tests.sh
123
126
docfx-warnings:
@@ -145,6 +148,7 @@ jobs:
145
148
env:
146
149
BUILD_TYPE: presubmit
147
150
TEST_TYPE: docfx
148
-
PY_VERSION: "3.10"
151
+
# TODO(https://github.com/googleapis/google-cloud-python/issues/13775): Specify `PY_VERSION` rather than relying on the default python version of the nox session.
Copy file name to clipboardExpand all lines: .github/workflows/lint.yml
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -34,11 +34,15 @@ jobs:
34
34
env:
35
35
BUILD_TYPE: presubmit
36
36
TEST_TYPE: lint
37
+
# TODO(https://github.com/googleapis/google-cloud-python/issues/13775): Specify `PY_VERSION` rather than relying on the default python version of the nox session.
38
+
PY_VERSION: "unused"
37
39
run: |
38
40
ci/run_conditional_tests.sh
39
41
- name: Run lint_setup_py
40
42
env:
41
43
BUILD_TYPE: presubmit
42
44
TEST_TYPE: lint_setup_py
45
+
# TODO(https://github.com/googleapis/google-cloud-python/issues/13775): Specify `PY_VERSION` rather than relying on the default python version of the nox session.
Copy file name to clipboardExpand all lines: .github/workflows/unittest.yml
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -76,7 +76,8 @@ jobs:
76
76
env:
77
77
BUILD_TYPE: presubmit
78
78
TEST_TYPE: ${{ matrix.option }}
79
-
PY_VERSION: ${{ matrix.python }}
79
+
# TODO(https://github.com/googleapis/google-cloud-python/issues/13775): Specify `PY_VERSION` rather than relying on the default python version of the nox session.
0 commit comments