File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed
Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change 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 }}
You can’t perform that action at this time.
0 commit comments