|
32 | 32 |
|
33 | 33 | jobs: |
34 | 34 |
|
| 35 | + py39-test-instrumentation-requests_ubuntu-latest: |
| 36 | + name: instrumentation-requests 3.9 Ubuntu |
| 37 | + runs-on: ubuntu-latest |
| 38 | + timeout-minutes: 30 |
| 39 | + steps: |
| 40 | + - name: Checkout repo @ SHA - ${{ github.sha }} |
| 41 | + uses: actions/checkout@v4 |
| 42 | + |
| 43 | + - name: Set up Python 3.9 |
| 44 | + uses: actions/setup-python@v5 |
| 45 | + with: |
| 46 | + python-version: "3.9" |
| 47 | + |
| 48 | + - name: Install tox |
| 49 | + run: pip install tox-uv |
| 50 | + |
| 51 | + - name: Run tests |
| 52 | + run: tox -e py39-test-instrumentation-requests -- -ra |
| 53 | + |
| 54 | + py310-test-instrumentation-requests_ubuntu-latest: |
| 55 | + name: instrumentation-requests 3.10 Ubuntu |
| 56 | + runs-on: ubuntu-latest |
| 57 | + timeout-minutes: 30 |
| 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-uv |
| 69 | + |
| 70 | + - name: Run tests |
| 71 | + run: tox -e py310-test-instrumentation-requests -- -ra |
| 72 | + |
| 73 | + py311-test-instrumentation-requests_ubuntu-latest: |
| 74 | + name: instrumentation-requests 3.11 Ubuntu |
| 75 | + runs-on: ubuntu-latest |
| 76 | + timeout-minutes: 30 |
| 77 | + steps: |
| 78 | + - name: Checkout repo @ SHA - ${{ github.sha }} |
| 79 | + uses: actions/checkout@v4 |
| 80 | + |
| 81 | + - name: Set up Python 3.11 |
| 82 | + uses: actions/setup-python@v5 |
| 83 | + with: |
| 84 | + python-version: "3.11" |
| 85 | + |
| 86 | + - name: Install tox |
| 87 | + run: pip install tox-uv |
| 88 | + |
| 89 | + - name: Run tests |
| 90 | + run: tox -e py311-test-instrumentation-requests -- -ra |
| 91 | + |
| 92 | + py312-test-instrumentation-requests_ubuntu-latest: |
| 93 | + name: instrumentation-requests 3.12 Ubuntu |
| 94 | + runs-on: ubuntu-latest |
| 95 | + timeout-minutes: 30 |
| 96 | + steps: |
| 97 | + - name: Checkout repo @ SHA - ${{ github.sha }} |
| 98 | + uses: actions/checkout@v4 |
| 99 | + |
| 100 | + - name: Set up Python 3.12 |
| 101 | + uses: actions/setup-python@v5 |
| 102 | + with: |
| 103 | + python-version: "3.12" |
| 104 | + |
| 105 | + - name: Install tox |
| 106 | + run: pip install tox-uv |
| 107 | + |
| 108 | + - name: Run tests |
| 109 | + run: tox -e py312-test-instrumentation-requests -- -ra |
| 110 | + |
| 111 | + py313-test-instrumentation-requests_ubuntu-latest: |
| 112 | + name: instrumentation-requests 3.13 Ubuntu |
| 113 | + runs-on: ubuntu-latest |
| 114 | + timeout-minutes: 30 |
| 115 | + steps: |
| 116 | + - name: Checkout repo @ SHA - ${{ github.sha }} |
| 117 | + uses: actions/checkout@v4 |
| 118 | + |
| 119 | + - name: Set up Python 3.13 |
| 120 | + uses: actions/setup-python@v5 |
| 121 | + with: |
| 122 | + python-version: "3.13" |
| 123 | + |
| 124 | + - name: Install tox |
| 125 | + run: pip install tox-uv |
| 126 | + |
| 127 | + - name: Run tests |
| 128 | + run: tox -e py313-test-instrumentation-requests -- -ra |
| 129 | + |
35 | 130 | py39-test-instrumentation-starlette-oldest_ubuntu-latest: |
36 | 131 | name: instrumentation-starlette-oldest 3.9 Ubuntu |
37 | 132 | runs-on: ubuntu-latest |
@@ -4686,98 +4781,3 @@ jobs: |
4686 | 4781 |
|
4687 | 4782 | - name: Run tests |
4688 | 4783 | run: tox -e py313-test-propagator-aws-xray-0 -- -ra |
4689 | | - |
4690 | | - py313-test-propagator-aws-xray-1_ubuntu-latest: |
4691 | | - name: propagator-aws-xray-1 3.13 Ubuntu |
4692 | | - runs-on: ubuntu-latest |
4693 | | - timeout-minutes: 30 |
4694 | | - steps: |
4695 | | - - name: Checkout repo @ SHA - ${{ github.sha }} |
4696 | | - uses: actions/checkout@v4 |
4697 | | - |
4698 | | - - name: Set up Python 3.13 |
4699 | | - uses: actions/setup-python@v5 |
4700 | | - with: |
4701 | | - python-version: "3.13" |
4702 | | - |
4703 | | - - name: Install tox |
4704 | | - run: pip install tox-uv |
4705 | | - |
4706 | | - - name: Run tests |
4707 | | - run: tox -e py313-test-propagator-aws-xray-1 -- -ra |
4708 | | - |
4709 | | - pypy3-test-propagator-aws-xray-0_ubuntu-latest: |
4710 | | - name: propagator-aws-xray-0 pypy-3.9 Ubuntu |
4711 | | - runs-on: ubuntu-latest |
4712 | | - timeout-minutes: 30 |
4713 | | - steps: |
4714 | | - - name: Checkout repo @ SHA - ${{ github.sha }} |
4715 | | - uses: actions/checkout@v4 |
4716 | | - |
4717 | | - - name: Set up Python pypy-3.9 |
4718 | | - uses: actions/setup-python@v5 |
4719 | | - with: |
4720 | | - python-version: "pypy-3.9" |
4721 | | - |
4722 | | - - name: Install tox |
4723 | | - run: pip install tox-uv |
4724 | | - |
4725 | | - - name: Run tests |
4726 | | - run: tox -e pypy3-test-propagator-aws-xray-0 -- -ra |
4727 | | - |
4728 | | - pypy3-test-propagator-aws-xray-1_ubuntu-latest: |
4729 | | - name: propagator-aws-xray-1 pypy-3.9 Ubuntu |
4730 | | - runs-on: ubuntu-latest |
4731 | | - timeout-minutes: 30 |
4732 | | - steps: |
4733 | | - - name: Checkout repo @ SHA - ${{ github.sha }} |
4734 | | - uses: actions/checkout@v4 |
4735 | | - |
4736 | | - - name: Set up Python pypy-3.9 |
4737 | | - uses: actions/setup-python@v5 |
4738 | | - with: |
4739 | | - python-version: "pypy-3.9" |
4740 | | - |
4741 | | - - name: Install tox |
4742 | | - run: pip install tox-uv |
4743 | | - |
4744 | | - - name: Run tests |
4745 | | - run: tox -e pypy3-test-propagator-aws-xray-1 -- -ra |
4746 | | - |
4747 | | - py39-test-propagator-ot-trace_ubuntu-latest: |
4748 | | - name: propagator-ot-trace 3.9 Ubuntu |
4749 | | - runs-on: ubuntu-latest |
4750 | | - timeout-minutes: 30 |
4751 | | - steps: |
4752 | | - - name: Checkout repo @ SHA - ${{ github.sha }} |
4753 | | - uses: actions/checkout@v4 |
4754 | | - |
4755 | | - - name: Set up Python 3.9 |
4756 | | - uses: actions/setup-python@v5 |
4757 | | - with: |
4758 | | - python-version: "3.9" |
4759 | | - |
4760 | | - - name: Install tox |
4761 | | - run: pip install tox-uv |
4762 | | - |
4763 | | - - name: Run tests |
4764 | | - run: tox -e py39-test-propagator-ot-trace -- -ra |
4765 | | - |
4766 | | - py310-test-propagator-ot-trace_ubuntu-latest: |
4767 | | - name: propagator-ot-trace 3.10 Ubuntu |
4768 | | - runs-on: ubuntu-latest |
4769 | | - timeout-minutes: 30 |
4770 | | - steps: |
4771 | | - - name: Checkout repo @ SHA - ${{ github.sha }} |
4772 | | - uses: actions/checkout@v4 |
4773 | | - |
4774 | | - - name: Set up Python 3.10 |
4775 | | - uses: actions/setup-python@v5 |
4776 | | - with: |
4777 | | - python-version: "3.10" |
4778 | | - |
4779 | | - - name: Install tox |
4780 | | - run: pip install tox-uv |
4781 | | - |
4782 | | - - name: Run tests |
4783 | | - run: tox -e py310-test-propagator-ot-trace -- -ra |
0 commit comments