This commit is contained in:
Tal Einat 2024-08-05 21:32:17 +03:00
parent 0563af5e24
commit 25cda522af
No known key found for this signature in database
GPG Key ID: 613A98AF4C800CDA
2 changed files with 1 additions and 3 deletions

View File

@ -18,7 +18,7 @@ on:
# The main purpose of this workflow is to build wheels for release tags.
# It runs automatically on tags matching this pattern and pushes to pypi.
- "v*"
workflow_dispatch:
workflow_dispatch: {}
# Allow this workflow to be run manually (pushing to testpypi instead of pypi)
jobs:

View File

@ -23,8 +23,6 @@ commands =
; Notes:
; * run tests both with and without the C extensions (including Cython)
; * if running with coverage, merge the coverage run results from both runs
; * for Python 2.6 use the unit2 script since -m unittest2 doesn't work
; (but when running with coverage, coverage run -m unittest2 works)
!with_coverage: {envpython} -m unittest discover tests
with_coverage: {envbindir}/coverage run --source=fuzzysearch -m unittest discover tests
with_coverage: mv .coverage .coverage.with_extensions