File tree 2 files changed +5
-11
lines changed
2 files changed +5
-11
lines changed Original file line number Diff line number Diff line change 19
19
- uses : actions/setup-python@v5
20
20
with :
21
21
python-version : 3.x
22
- - run : uv sync --group=euler-validate
22
+ - run : uv sync --group=euler-validate,test
23
23
- run : uv run pytest --doctest-modules --cov-report=term-missing:skip-covered --cov=project_euler/ project_euler/
24
24
validate-solutions :
25
25
runs-on : ubuntu-latest
29
29
- uses : actions/setup-python@v5
30
30
with :
31
31
python-version : 3.x
32
- - run : uv sync --group=euler-validate
32
+ - run : uv sync --group=euler-validate,test
33
33
- run : uv run pytest scripts/validate_solutions.py
34
34
env :
35
35
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change @@ -31,24 +31,18 @@ dependencies = [
31
31
]
32
32
33
33
[dependency-groups ]
34
- dev = [
35
- " pytest>=8.3.4" ,
36
- " pytest-cov>=6" ,
37
- ]
38
34
docs = [
39
35
" myst-parser>=4" ,
40
36
" sphinx-autoapi>=3.4" ,
41
37
" sphinx-pyproject>=0.3" ,
42
38
]
43
39
euler-validate = [
44
40
" numpy>=2.1.3" ,
45
- " pytest>=8.3.4" ,
46
- " pytest-cov>=6" ,
47
41
" requests>=2.32.3" ,
48
42
]
49
- lint = [
50
- " codespell>=2.3 " ,
51
- " ruff>=0.8.1 " ,
43
+ test = [
44
+ " pytest>=8.3.4 " ,
45
+ " pytest-cov>=6 " ,
52
46
]
53
47
54
48
[tool .ruff ]
You can’t perform that action at this time.
0 commit comments