We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c58c6c2 commit b082184Copy full SHA for b082184
.github/workflows/ci.yml
@@ -188,6 +188,15 @@ jobs:
188
fi
189
- name: Display installed python package versions
190
run: pip list
191
+ - name: Test native speed
192
+ if: ${{ !contains(matrix.tox-env, 'gmpy') }}
193
+ run: tox -e speed
194
+ - name: Test speed with gmpy
195
+ if: ${{ contains(matrix.tox-env, 'gmpyp') }}
196
+ run: tox -e speedgmpy
197
+ - name: Test speed with gmpy2
198
+ if: ${{ contains(matrix.tox-env, 'gmpy2') }}
199
+ run: tox -e speedgmpy2
200
- name: Run unit tests
201
if: ${{ matrix.tox-env }}
202
run: tox -e ${{ matrix.tox-env }}
0 commit comments