Skip to content

Commit f946c4d

Browse files
committed
Fix pytest invocation path
1 parent d3d10cc commit f946c4d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
env:
3737
CIBW_BEFORE_BUILD: pip install -e . && python build.py
3838
CIBW_TEST_REQUIRES: pytest
39-
CIBW_TEST_COMMAND: pytest --showlocals {package}/tests
39+
CIBW_TEST_COMMAND: python -m pytest --showlocals {package}/tests
4040
CIBW_SKIP: "{cp36-*,cp37-*,pp*}" # Skip Python 3.6 and 3.7, as well as PyPy
4141
CIBW_ARCHS_MACOS: x86_64 arm64
4242
CIBW_ARCHS_LINUX: auto aarch64

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "textual_tree_sitter_languages"
3-
version = "1.11.0"
3+
version = "1.11.0b0"
44
description = "Binary Python wheels for popular tree sitter languages."
55
authors = [
66
{name = "Textualize", email = "[email protected]"},

0 commit comments

Comments
 (0)