diff --git a/.github/workflows/test_1.yml b/.github/workflows/test_1.yml index 30e02c5634..2615280e4c 100644 --- a/.github/workflows/test_1.yml +++ b/.github/workflows/test_1.yml @@ -3903,3 +3903,45 @@ jobs: - name: Run tests run: tox -e pypy3-test-processor-baggage -- -ra + + py312-test-instrumentation-botocore_windows-latest: + name: instrumentation-botocore 3.12 Windows + runs-on: windows-latest + steps: + - name: Checkout repo @ SHA - ${{ github.sha }} + uses: actions/checkout@v4 + + - name: Set up Python 3.12 + uses: actions/setup-python@v5 + with: + python-version: "3.12" + + - name: Install tox + run: pip install tox + + - name: Configure git to support long filenames + run: git config --system core.longpaths true + + - name: Run tests + run: tox -e py312-test-instrumentation-botocore -- -ra + + py312-test-instrumentation-system-metrics_windows-latest: + name: instrumentation-system-metrics 3.12 Windows + runs-on: windows-latest + steps: + - name: Checkout repo @ SHA - ${{ github.sha }} + uses: actions/checkout@v4 + + - name: Set up Python 3.12 + uses: actions/setup-python@v5 + with: + python-version: "3.12" + + - name: Install tox + run: pip install tox + + - name: Configure git to support long filenames + run: git config --system core.longpaths true + + - name: Run tests + run: tox -e py312-test-instrumentation-system-metrics -- -ra