Skip to content

Commit e187f98

Browse files
author
Codeflash Bot
committed
Merge branch 'main' of github.com:codeflash-ai/codeflash into test_cache_revival
2 parents d5cf24b + 3b522fa commit e187f98

File tree

3 files changed

+1577
-362
lines changed

3 files changed

+1577
-362
lines changed

.github/workflows/unit-tests.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
14+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
1515
continue-on-error: true
1616
runs-on: ubuntu-latest
1717
steps:
@@ -28,5 +28,9 @@ jobs:
2828
- name: install dependencies
2929
run: uv sync
3030

31+
- name: Install test-only dependencies (Python 3.13)
32+
if: matrix.python-version == '3.13'
33+
run: uv sync --group tests
34+
3135
- name: Unit tests
32-
run: uv run pytest tests/
36+
run: uv run pytest tests/

pyproject.toml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ keywords = [
1717
]
1818
dependencies = [
1919
"unidiff>=0.7.4",
20-
"pytest>=7.0.0,!=8.3.4",
20+
"pytest>=7.0.0",
2121
"gitpython>=3.1.31",
2222
"libcst>=1.0.1",
2323
"jedi>=0.19.1",
@@ -85,6 +85,16 @@ dev = [
8585
asyncio = [
8686
"pytest-asyncio>=1.2.0",
8787
]
88+
tests = [
89+
"black>=25.9.0",
90+
"jax>=0.4.30",
91+
"numpy>=2.0.2",
92+
"pandas>=2.3.3",
93+
"pyrsistent>=0.20.0",
94+
"scipy>=1.13.1",
95+
"torch>=2.8.0",
96+
"xarray>=2024.7.0",
97+
]
8898

8999
[tool.hatch.build.targets.sdist]
90100
include = ["codeflash"]

0 commit comments

Comments
 (0)