|
16 | 16 |
|
17 | 17 | jobs:
|
18 | 18 |
|
| 19 | + py38-test-instrumentation-openai-v2_ubuntu-latest: |
| 20 | + name: instrumentation-openai-v2 3.8 Ubuntu |
| 21 | + runs-on: ubuntu-latest |
| 22 | + steps: |
| 23 | + - name: Checkout repo @ SHA - ${{ github.sha }} |
| 24 | + uses: actions/checkout@v4 |
| 25 | + |
| 26 | + - name: Set up Python 3.8 |
| 27 | + uses: actions/setup-python@v5 |
| 28 | + with: |
| 29 | + python-version: "3.8" |
| 30 | + |
| 31 | + - name: Install tox |
| 32 | + run: pip install tox |
| 33 | + |
| 34 | + - name: Run tests |
| 35 | + run: tox -e py38-test-instrumentation-openai-v2 -- -ra |
| 36 | + |
| 37 | + py39-test-instrumentation-openai-v2_ubuntu-latest: |
| 38 | + name: instrumentation-openai-v2 3.9 Ubuntu |
| 39 | + runs-on: ubuntu-latest |
| 40 | + steps: |
| 41 | + - name: Checkout repo @ SHA - ${{ github.sha }} |
| 42 | + uses: actions/checkout@v4 |
| 43 | + |
| 44 | + - name: Set up Python 3.9 |
| 45 | + uses: actions/setup-python@v5 |
| 46 | + with: |
| 47 | + python-version: "3.9" |
| 48 | + |
| 49 | + - name: Install tox |
| 50 | + run: pip install tox |
| 51 | + |
| 52 | + - name: Run tests |
| 53 | + run: tox -e py39-test-instrumentation-openai-v2 -- -ra |
| 54 | + |
| 55 | + py310-test-instrumentation-openai-v2_ubuntu-latest: |
| 56 | + name: instrumentation-openai-v2 3.10 Ubuntu |
| 57 | + runs-on: ubuntu-latest |
| 58 | + steps: |
| 59 | + - name: Checkout repo @ SHA - ${{ github.sha }} |
| 60 | + uses: actions/checkout@v4 |
| 61 | + |
| 62 | + - name: Set up Python 3.10 |
| 63 | + uses: actions/setup-python@v5 |
| 64 | + with: |
| 65 | + python-version: "3.10" |
| 66 | + |
| 67 | + - name: Install tox |
| 68 | + run: pip install tox |
| 69 | + |
| 70 | + - name: Run tests |
| 71 | + run: tox -e py310-test-instrumentation-openai-v2 -- -ra |
| 72 | + |
| 73 | + py311-test-instrumentation-openai-v2_ubuntu-latest: |
| 74 | + name: instrumentation-openai-v2 3.11 Ubuntu |
| 75 | + runs-on: ubuntu-latest |
| 76 | + steps: |
| 77 | + - name: Checkout repo @ SHA - ${{ github.sha }} |
| 78 | + uses: actions/checkout@v4 |
| 79 | + |
| 80 | + - name: Set up Python 3.11 |
| 81 | + uses: actions/setup-python@v5 |
| 82 | + with: |
| 83 | + python-version: "3.11" |
| 84 | + |
| 85 | + - name: Install tox |
| 86 | + run: pip install tox |
| 87 | + |
| 88 | + - name: Run tests |
| 89 | + run: tox -e py311-test-instrumentation-openai-v2 -- -ra |
| 90 | + |
| 91 | + py312-test-instrumentation-openai-v2_ubuntu-latest: |
| 92 | + name: instrumentation-openai-v2 3.12 Ubuntu |
| 93 | + runs-on: ubuntu-latest |
| 94 | + steps: |
| 95 | + - name: Checkout repo @ SHA - ${{ github.sha }} |
| 96 | + uses: actions/checkout@v4 |
| 97 | + |
| 98 | + - name: Set up Python 3.12 |
| 99 | + uses: actions/setup-python@v5 |
| 100 | + with: |
| 101 | + python-version: "3.12" |
| 102 | + |
| 103 | + - name: Install tox |
| 104 | + run: pip install tox |
| 105 | + |
| 106 | + - name: Run tests |
| 107 | + run: tox -e py312-test-instrumentation-openai-v2 -- -ra |
| 108 | + |
| 109 | + pypy3-test-instrumentation-openai-v2_ubuntu-latest: |
| 110 | + name: instrumentation-openai-v2 pypy-3.8 Ubuntu |
| 111 | + runs-on: ubuntu-latest |
| 112 | + steps: |
| 113 | + - name: Checkout repo @ SHA - ${{ github.sha }} |
| 114 | + uses: actions/checkout@v4 |
| 115 | + |
| 116 | + - name: Set up Python pypy-3.8 |
| 117 | + uses: actions/setup-python@v5 |
| 118 | + with: |
| 119 | + python-version: "pypy-3.8" |
| 120 | + |
| 121 | + - name: Install tox |
| 122 | + run: pip install tox |
| 123 | + |
| 124 | + - name: Run tests |
| 125 | + run: tox -e pypy3-test-instrumentation-openai-v2 -- -ra |
| 126 | + |
19 | 127 | py38-test-resource-detector-container_ubuntu-latest:
|
20 | 128 | name: resource-detector-container 3.8 Ubuntu
|
21 | 129 | runs-on: ubuntu-latest
|
@@ -4407,111 +4515,3 @@ jobs:
|
4407 | 4515 |
|
4408 | 4516 | - name: Run tests
|
4409 | 4517 | run: tox -e py311-test-instrumentation-pymemcache-2 -- -ra
|
4410 |
| - |
4411 |
| - py311-test-instrumentation-pymemcache-3_ubuntu-latest: |
4412 |
| - name: instrumentation-pymemcache-3 3.11 Ubuntu |
4413 |
| - runs-on: ubuntu-latest |
4414 |
| - steps: |
4415 |
| - - name: Checkout repo @ SHA - ${{ github.sha }} |
4416 |
| - uses: actions/checkout@v4 |
4417 |
| - |
4418 |
| - - name: Set up Python 3.11 |
4419 |
| - uses: actions/setup-python@v5 |
4420 |
| - with: |
4421 |
| - python-version: "3.11" |
4422 |
| - |
4423 |
| - - name: Install tox |
4424 |
| - run: pip install tox |
4425 |
| - |
4426 |
| - - name: Run tests |
4427 |
| - run: tox -e py311-test-instrumentation-pymemcache-3 -- -ra |
4428 |
| - |
4429 |
| - py311-test-instrumentation-pymemcache-4_ubuntu-latest: |
4430 |
| - name: instrumentation-pymemcache-4 3.11 Ubuntu |
4431 |
| - runs-on: ubuntu-latest |
4432 |
| - steps: |
4433 |
| - - name: Checkout repo @ SHA - ${{ github.sha }} |
4434 |
| - uses: actions/checkout@v4 |
4435 |
| - |
4436 |
| - - name: Set up Python 3.11 |
4437 |
| - uses: actions/setup-python@v5 |
4438 |
| - with: |
4439 |
| - python-version: "3.11" |
4440 |
| - |
4441 |
| - - name: Install tox |
4442 |
| - run: pip install tox |
4443 |
| - |
4444 |
| - - name: Run tests |
4445 |
| - run: tox -e py311-test-instrumentation-pymemcache-4 -- -ra |
4446 |
| - |
4447 |
| - py312-test-instrumentation-pymemcache-0_ubuntu-latest: |
4448 |
| - name: instrumentation-pymemcache-0 3.12 Ubuntu |
4449 |
| - runs-on: ubuntu-latest |
4450 |
| - steps: |
4451 |
| - - name: Checkout repo @ SHA - ${{ github.sha }} |
4452 |
| - uses: actions/checkout@v4 |
4453 |
| - |
4454 |
| - - name: Set up Python 3.12 |
4455 |
| - uses: actions/setup-python@v5 |
4456 |
| - with: |
4457 |
| - python-version: "3.12" |
4458 |
| - |
4459 |
| - - name: Install tox |
4460 |
| - run: pip install tox |
4461 |
| - |
4462 |
| - - name: Run tests |
4463 |
| - run: tox -e py312-test-instrumentation-pymemcache-0 -- -ra |
4464 |
| - |
4465 |
| - py312-test-instrumentation-pymemcache-1_ubuntu-latest: |
4466 |
| - name: instrumentation-pymemcache-1 3.12 Ubuntu |
4467 |
| - runs-on: ubuntu-latest |
4468 |
| - steps: |
4469 |
| - - name: Checkout repo @ SHA - ${{ github.sha }} |
4470 |
| - uses: actions/checkout@v4 |
4471 |
| - |
4472 |
| - - name: Set up Python 3.12 |
4473 |
| - uses: actions/setup-python@v5 |
4474 |
| - with: |
4475 |
| - python-version: "3.12" |
4476 |
| - |
4477 |
| - - name: Install tox |
4478 |
| - run: pip install tox |
4479 |
| - |
4480 |
| - - name: Run tests |
4481 |
| - run: tox -e py312-test-instrumentation-pymemcache-1 -- -ra |
4482 |
| - |
4483 |
| - py312-test-instrumentation-pymemcache-2_ubuntu-latest: |
4484 |
| - name: instrumentation-pymemcache-2 3.12 Ubuntu |
4485 |
| - runs-on: ubuntu-latest |
4486 |
| - steps: |
4487 |
| - - name: Checkout repo @ SHA - ${{ github.sha }} |
4488 |
| - uses: actions/checkout@v4 |
4489 |
| - |
4490 |
| - - name: Set up Python 3.12 |
4491 |
| - uses: actions/setup-python@v5 |
4492 |
| - with: |
4493 |
| - python-version: "3.12" |
4494 |
| - |
4495 |
| - - name: Install tox |
4496 |
| - run: pip install tox |
4497 |
| - |
4498 |
| - - name: Run tests |
4499 |
| - run: tox -e py312-test-instrumentation-pymemcache-2 -- -ra |
4500 |
| - |
4501 |
| - py312-test-instrumentation-pymemcache-3_ubuntu-latest: |
4502 |
| - name: instrumentation-pymemcache-3 3.12 Ubuntu |
4503 |
| - runs-on: ubuntu-latest |
4504 |
| - steps: |
4505 |
| - - name: Checkout repo @ SHA - ${{ github.sha }} |
4506 |
| - uses: actions/checkout@v4 |
4507 |
| - |
4508 |
| - - name: Set up Python 3.12 |
4509 |
| - uses: actions/setup-python@v5 |
4510 |
| - with: |
4511 |
| - python-version: "3.12" |
4512 |
| - |
4513 |
| - - name: Install tox |
4514 |
| - run: pip install tox |
4515 |
| - |
4516 |
| - - name: Run tests |
4517 |
| - run: tox -e py312-test-instrumentation-pymemcache-3 -- -ra |
0 commit comments