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
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ jobs:
run: uv run --dev ruff format --check --diff .
continue-on-error: true

- name: Ruff lint check
run: uv run --dev ruff check .
continue-on-error: true

- name: Type check
run: |
uv run --dev pyrefly check .
Expand Down
2 changes: 0 additions & 2 deletions examples/test_measure.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import operator

import alternative


Expand Down
14 changes: 4 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,24 +7,18 @@ authors = [
{ name = "Oliver Bristow", email = "evilumbrella+github@gmail.com" }
]
requires-python = ">=3.12"
dependencies = [
"pytest>=8.3.5",
]
dependencies = []

[dependency-groups]
[project.optional-dependencies]
dev = [
"pytest-benchmark>=5.1.0",
"pytest>=8.3.5",
"alternative",
"pytest-benchmark>=5.1.0",
"pytest-cov>=6.1.1",
]

[tool.uv]
dev-dependencies = [
"alternative",
"pytest>=8.3.5",
"pytest-benchmark>=5.1.0",
"pytest-cov>=6.1.1",
"alternative[dev]",
]

[tool.uv.sources]
Expand Down
Loading
Loading