File tree Expand file tree Collapse file tree 5 files changed +17
-8
lines changed
Expand file tree Collapse file tree 5 files changed +17
-8
lines changed Original file line number Diff line number Diff line change 44 merge_group :
55 push :
66 branches-ignore :
7- # disabled for jaraco/skeleton#103
8- # - gh-readonly-queue/** # Temporary merge queue-related GH-made branches
7+ # temporary GH branches relating to merge queues (jaraco/skeleton#93)
8+ - gh-readonly-queue/**
9+ tags :
10+ # required if branches-ignore is supplied (jaraco/skeleton#103)
11+ - ' **'
912 pull_request :
1013
1114permissions :
3134 matrix :
3235 python :
3336 - " 3.8"
34- - " 3.11"
3537 - " 3.12"
3638 platform :
3739 - ubuntu-latest
4244 platform : ubuntu-latest
4345 - python : " 3.10"
4446 platform : ubuntu-latest
47+ - python : " 3.11"
48+ platform : ubuntu-latest
4549 # disabled (https://github.com/jaraco/cssutils/issues/39)
4650 # - python: pypy3.10
4751 # platform: ubuntu-latest
Original file line number Diff line number Diff line change 1010 os : ubuntu-lts-latest
1111 tools :
1212 python : latest
13+ # post-checkout job to ensure the clone isn't shallow jaraco/skeleton#114
14+ jobs :
15+ post_checkout :
16+ - git fetch --unshallow || true
Original file line number Diff line number Diff line change 11[lint ]
2+ extend-select = [
3+ " C901" ,
4+ " W" ,
5+ ]
26ignore = [
37 # https://docs.astral.sh/ruff/formatter/#conflicting-lint-rules
48 " W191" ,
Original file line number Diff line number Diff line change @@ -41,9 +41,7 @@ testing =
4141 pytest >= 6
4242 pytest-checkdocs >= 2.4
4343 pytest-cov
44- pytest-mypy; \
45- # workaround for jaraco/skeleton#22
46- python_implementation != " PyPy"
44+ pytest-mypy
4745 pytest-enabler >= 2.2
4846 pytest-ruff >= 0.2.1
4947
@@ -58,8 +56,6 @@ testing =
5856docs =
5957 # upstream
6058 sphinx >= 3.5
61- # workaround for sphinx/sphinx-doc#11662
62- sphinx < 7.2.5
6359 jaraco.packaging >= 9.3
6460 rst.linker >= 1.9
6561 furo
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ extras =
1212[testenv:diffcov]
1313description = run tests and check that diff from main is covered
1414deps =
15+ {[testenv]deps}
1516 diff-cover
1617commands =
1718 pytest {posargs} --cov-report xml
You can’t perform that action at this time.
0 commit comments