Skip to content

Commit

Permalink
Fix pytest invocation path
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenburns committed Nov 28, 2024
1 parent d3d10cc commit f946c4d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
env:
CIBW_BEFORE_BUILD: pip install -e . && python build.py
CIBW_TEST_REQUIRES: pytest
CIBW_TEST_COMMAND: pytest --showlocals {package}/tests
CIBW_TEST_COMMAND: python -m pytest --showlocals {package}/tests
CIBW_SKIP: "{cp36-*,cp37-*,pp*}" # Skip Python 3.6 and 3.7, as well as PyPy
CIBW_ARCHS_MACOS: x86_64 arm64
CIBW_ARCHS_LINUX: auto aarch64
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "textual_tree_sitter_languages"
version = "1.11.0"
version = "1.11.0b0"
description = "Binary Python wheels for popular tree sitter languages."
authors = [
{name = "Textualize", email = "[email protected]"},
Expand Down

0 comments on commit f946c4d

Please sign in to comment.