Skip to content

Commit 6a6dcbb

Browse files
committed
Cruft update
1 parent 5dd794d commit 6a6dcbb

13 files changed

+579
-668
lines changed

.cruft.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"template": "https://github.com/woltapp/wolt-python-package-cookiecutter",
3-
"commit": "4eecc9c4d27e3c9321438bc1fdaf717bec5eadf6",
3+
"commit": "ef35f9eae64cee9e05dfc13d68a386de845407d1",
44
"checkout": null,
55
"context": {
66
"cookiecutter": {

.github/actions/python-poetry-env/action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ inputs:
55
python-version:
66
required: false
77
description: 'Python version'
8-
default: '3.10'
8+
default: '3.12'
99
outputs: {}
1010
runs:
1111
using: 'composite'
1212
steps:
13-
- uses: actions/setup-python@v4
13+
- uses: actions/setup-python@v5
1414
with:
1515
python-version: ${{inputs.python-version}}
1616
- name: Install poetry

.github/workflows/cookiecutter.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ jobs:
88
auto-update-project:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v4
1212
- name: Set up Python
13-
uses: actions/setup-python@v4
13+
uses: actions/setup-python@v5
1414
with:
15-
python-version: 3.9
15+
python-version: "3.12"
1616

1717
- name: Install dependencies
1818
run: python -m pip install cruft poetry jello tabulate

.github/workflows/dependencies.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
auto-update-dependencies:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v4
1212
- uses: ./.github/actions/python-poetry-env
1313

1414
- name: Install tabulate

.github/workflows/draft_release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
draft-release:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v4
1616
- uses: ./.github/actions/python-poetry-env
1717
- name: Update version
1818
id: updated_version

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
build-and-publish:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v4
1212
- uses: ./.github/actions/python-poetry-env
1313
- name: Publish to pypi
1414
run: |

.github/workflows/test.yml

+12-5
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
actionlint:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v4
1414
- name: Download actionlint
1515
run: bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash) 1.6.21
1616
shell: bash
@@ -22,14 +22,14 @@ jobs:
2222
name: Check if automatic project update was successful
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v2
25+
- uses: actions/checkout@v4
2626
- name: Fail if .rej files exist as structure update was not successful
2727
run: test -z "$(find . -iname '*.rej')"
2828

2929
pre-commit:
3030
runs-on: ubuntu-latest
3131
steps:
32-
- uses: actions/checkout@v2
32+
- uses: actions/checkout@v4
3333
- uses: ./.github/actions/python-poetry-env
3434
- run: poetry run pre-commit run --all-files
3535

@@ -38,10 +38,17 @@ jobs:
3838
strategy:
3939
fail-fast: false
4040
matrix:
41-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
41+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
4242
steps:
43-
- uses: actions/checkout@v2
43+
- uses: actions/checkout@v4
4444
- uses: ./.github/actions/python-poetry-env
4545
with:
4646
python-version: ${{ matrix.python-version }}
4747
- run: poetry run pytest
48+
49+
docs:
50+
runs-on: ubuntu-latest
51+
steps:
52+
- uses: actions/checkout@v4
53+
- uses: ./.github/actions/python-poetry-env
54+
- run: poetry run mkdocs build

.pre-commit-config.yaml

+12-10
Original file line numberDiff line numberDiff line change
@@ -16,24 +16,26 @@ repos:
1616
- id: mixed-line-ending
1717
- repo: local
1818
hooks:
19-
- id: black
20-
name: black
21-
entry: poetry run black
19+
- id: ruff-format
20+
name: ruff-format
21+
entry: poetry run ruff format
22+
require_serial: true
2223
language: system
23-
types: [python]
24+
types: [ python ]
25+
- id: ruff
26+
name: ruff
27+
# Add --fix, in case you want it to autofix when this hook runs
28+
entry: poetry run ruff check --force-exclude
29+
require_serial: true
30+
language: system
31+
types: [ python ]
2432
- id: mypy
2533
name: mypy
2634
entry: poetry run mypy .
2735
require_serial: true
2836
language: system
2937
types: [python]
3038
pass_filenames: false
31-
- id: ruff
32-
name: ruff
33-
entry: poetry run ruff check
34-
require_serial: true
35-
language: system
36-
types: [python]
3739
- id: kacl-verify
3840
name: kacl-verify
3941
entry: poetry run kacl-cli verify

LICENCE LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2021 Jerry Pussinen
1+
Copyright (c) 2024 Jerry Pussinen
22

33
Permission is hereby granted, free of charge, to any person obtaining
44
a copy of this software and associated documentation files (the

README.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ The `least_duration` algorithm walks the list of tests and assigns each test to
9696
* Clone this repository
9797
* Requirements:
9898
* [Poetry](https://python-poetry.org/)
99-
* Python 3.7+
99+
* Python 3.8+
100100
* Create a virtual environment and install the dependencies
101101

102102
```sh
@@ -117,9 +117,8 @@ pytest
117117

118118
### Documentation
119119

120-
The documentation is automatically generated from the content of the [docs directory](./docs) and from the docstrings
121-
of the public signatures of the source code. The documentation is updated and published as a [Github project page
122-
](https://pages.github.com/) automatically as part each release.
120+
The documentation is automatically generated from the content of the [docs directory](https://github.com/jerry-git/pytest-split/tree/master/docs) and from the docstrings
121+
of the public signatures of the source code. The documentation is updated and published as a [Github Pages page](https://pages.github.com/) automatically as part each release.
123122

124123
### Releasing
125124

@@ -133,7 +132,7 @@ Find the draft release from the
133132

134133
### Pre-commit
135134

136-
Pre-commit hooks run all the auto-formatters (e.g. `black`), linters (e.g. `mypy`, `ruff`), and other quality
135+
Pre-commit hooks run all the auto-formatting (`ruff format`), linters (e.g. `ruff` and `mypy`), and other quality
137136
checks to make sure the changeset is in good shape before a commit/push happens.
138137

139138
You can install the hooks with (runs for each commit):

mkdocs.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,7 @@ plugins:
2828
default_handler: python
2929
handlers:
3030
python:
31-
rendering:
31+
options:
3232
show_signature_annotations: true
3333
show_source: true
3434
show_submodules: true
35-
watch:
36-
- src/pytest_split

0 commit comments

Comments
 (0)