Skip to content

Commit 0d25973

Browse files
authored
Improve type checking. (#37)
1 parent 25f336b commit 0d25973

File tree

7 files changed

+391
-171
lines changed

7 files changed

+391
-171
lines changed

.github/workflows/main.yml

+16-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,21 @@ on:
1515

1616
jobs:
1717

18+
run-type-checking:
19+
20+
name: Run tests for type-checking
21+
runs-on: ubuntu-latest
22+
23+
steps:
24+
- uses: actions/checkout@v4
25+
- uses: actions/setup-python@v5
26+
with:
27+
python-version-file: .python-version
28+
allow-prereleases: true
29+
cache: pip
30+
- run: pip install tox-uv
31+
- run: tox -e typing
32+
1833
run-tests:
1934

2035
name: Run tests for ${{ matrix.os }} on ${{ matrix.environment }}
@@ -32,7 +47,7 @@ jobs:
3247
uses: julia-actions/setup-julia@v2
3348
- uses: prefix-dev/[email protected]
3449
with:
35-
pixi-version: v0.20.1
50+
pixi-version: v0.22.0
3651
# cache: true
3752
environments: ${{ matrix.environment }}
3853

.pre-commit-config.yaml

-12
Original file line numberDiff line numberDiff line change
@@ -42,18 +42,6 @@ repos:
4242
mdformat-black,
4343
]
4444
args: [--wrap, "88"]
45-
- repo: https://github.com/pre-commit/mirrors-mypy
46-
rev: 'v1.10.0'
47-
hooks:
48-
- id: mypy
49-
additional_dependencies: [
50-
attrs>=21.3.0,
51-
click,
52-
pytask>=0.4.0,
53-
types-PyYAML,
54-
types-setuptools
55-
]
56-
pass_filenames: false
5745
- repo: https://github.com/codespell-project/codespell
5846
rev: v2.2.6
5947
hooks:

.python-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.12.2

CHANGES.md

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ releases are available on [PyPI](https://pypi.org/project/pytask-julia) and
1111
- {pull}`32` uses trusted publishing for PyPI.
1212
- {pull}`33` uses uuid4 to generate more robust file names for serialized arguments.
1313
- {pull}`36` updates tests for pytask v0.5.
14+
- {pull}`37` improves type-checking.
1415

1516
## 0.4.0 - 2023-10-08
1617

pixi.lock

+361-143
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ pytask_julia = "pytask_julia.plugin"
3535

3636
[project.optional-dependencies]
3737
test = ["pytask-parallel", "pytest", "pytest-cov", "pytest-xdist", "pyyaml"]
38+
typing = ["mypy", "pyyaml", "types-PyYAML"]
3839

3940
[tool.rye]
4041
managed = true
@@ -115,7 +116,7 @@ platforms = ["win-64", "linux-64", "osx-64", "osx-arm64"]
115116
pytask_julia = { path = ".", editable = true }
116117

117118
[tool.pixi.environments]
118-
default = { solve-group = "default" }
119+
default = { solve-group = "default", features = ["test", "typing"]}
119120
test = { features = ["test"], solve-group = "default" }
120121
py38 = { features = ["py38", "test"]}
121122
py39 = { features = ["py39", "test"]}

tox.ini

+10-14
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,19 @@
11
[tox]
2-
envlist = pytest
2+
requires = tox>=4
3+
envlist = test, typing
34

45
[testenv]
56
allowlist_externals = julia
67
passenv = CI
7-
usedevelop = true
8+
package = editable
89

9-
[testenv:pytest]
10-
deps =
11-
# Package dependencies
12-
pytask >=0.4.0
13-
pytask-parallel >=0.4.0
14-
15-
# Optional package dependencies
16-
pyyaml
17-
18-
pytest
19-
pytest-cov
20-
pytest-xdist
10+
[testenv:test]
11+
extras = test
2112
commands =
2213
julia --project=. --eval "import Pkg; Pkg.instantiate()"
2314
pytest {posargs}
15+
16+
17+
[testenv:typing]
18+
extras = typing
19+
commands = mypy

0 commit comments

Comments
 (0)