|
25 | 25 | strategy:
|
26 | 26 | fail-fast: false
|
27 | 27 | matrix:
|
28 |
| - python-version: ["3.5","3.7","3.8","3.11","3.12"] |
| 28 | + python-version: ["3.5","3.7","3.8","3.9","3.11","3.12"] |
29 | 29 | # python3.6 reached EOL and is no longer being supported on
|
30 | 30 | # new versions of hosted runners on Github Actions
|
31 | 31 | # ubuntu-20.04 is the last version that supported python3.6
|
|
58 | 58 | run: |
|
59 | 59 | set -x # print commands that are executed
|
60 | 60 | ./scripts/runtox.sh "py${{ matrix.python-version }}-huey-latest" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch
|
| 61 | + - name: Test openai latest |
| 62 | + run: | |
| 63 | + set -x # print commands that are executed |
| 64 | + ./scripts/runtox.sh "py${{ matrix.python-version }}-openai-latest" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch |
61 | 65 | - name: Test rq latest
|
62 | 66 | run: |
|
63 | 67 | set -x # print commands that are executed
|
@@ -110,6 +114,10 @@ jobs:
|
110 | 114 | run: |
|
111 | 115 | set -x # print commands that are executed
|
112 | 116 | ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-huey" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch
|
| 117 | + - name: Test openai pinned |
| 118 | + run: | |
| 119 | + set -x # print commands that are executed |
| 120 | + ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-openai" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch |
113 | 121 | - name: Test rq pinned
|
114 | 122 | run: |
|
115 | 123 | set -x # print commands that are executed
|
@@ -151,6 +159,10 @@ jobs:
|
151 | 159 | run: |
|
152 | 160 | set -x # print commands that are executed
|
153 | 161 | ./scripts/runtox.sh --exclude-latest "py2.7-huey" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch
|
| 162 | + - name: Test openai py27 |
| 163 | + run: | |
| 164 | + set -x # print commands that are executed |
| 165 | + ./scripts/runtox.sh --exclude-latest "py2.7-openai" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch |
154 | 166 | - name: Test rq py27
|
155 | 167 | run: |
|
156 | 168 | set -x # print commands that are executed
|
|
0 commit comments