Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ concurrency = [
covcheck = [
"coverage[toml] ; python_version < '3.11'",
"coverage>=7.11.3",
"pytest-cov>=7.0.0",
]
test = [
"hypothesis>=6.113.0",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ commands =
artifact-upload: bash -c "echo 'hello world' > test.txt"
# Verify that freethreaded builds are using freethreaded interpreter
py313t: python -c "import sys; assert 'free-threading' in sys.version"
covcheck: coverage run --parallel-mode -m pytest --pyargs test_package {posargs}
covcheck: pytest --pyargs test_package {posargs}

[testenv:pep8]
description = verify pep8
Expand Down
Loading