Skip to content

Commit bc0a7d7

Browse files
committed
Updates comments and names for unittest.yaml elements.
1 parent 1711d70 commit bc0a7d7

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/unittest.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@ jobs:
1919
runs-on: ubuntu-22.04
2020
strategy:
2121
matrix:
22-
python: ["3.13"]
22+
python: ["3.13"] # TODO: For alpha release purposes, microgenerator tests
23+
# are limited to Python 3.13. By default this also limits
24+
# GAPIC tests. Once the testing kinks are worked out we can
25+
# explore a more comprehensive approach.
2326
steps:
2427
- name: Checkout
2528
uses: actions/checkout@v4
@@ -36,19 +39,21 @@ jobs:
3639
run: |
3740
python -m pip install --upgrade setuptools pip wheel
3841
python -m pip install nox
42+
# These unit tests cover the GAPIC generated code.
3943
- name: Run unit tests
4044
env:
4145
COVERAGE_FILE: .coverage-${{ matrix.python }}
4246
BUILD_TYPE: presubmit
43-
TEST_TYPE: unit xxx
47+
TEST_TYPE: unit
4448
PY_VERSION: ${{ matrix.python }}
4549
run: |
4650
nox -s unit-${{ matrix.python }}
51+
# These unit tests cover the microgenerator module.
4752
- name: Run microgenerator unit tests
4853
env:
4954
COVERAGE_FILE: .coverage-microgenerator-${{ matrix.python }}
5055
BUILD_TYPE: presubmit
51-
TEST_TYPE: unit μgen
56+
TEST_TYPE: unit
5257
PY_VERSION: ${{ matrix.python }}
5358
run: |
5459
nox -f scripts/microgenerator/noxfile.py -s unit-${{ matrix.python }}

0 commit comments

Comments
 (0)