[0/n] Only run tests on py3.9, not mypy (#319)
We don't really need mypy on 3.9 (unit tests would catch any real issues), and it causes issues with the rest of this stack. --- [//]: # (BEGIN SAPLING FOOTER) * #324 * #322 * #321 * #320 * __->__ #319
This commit is contained in:
commit
13abb6826d
2 changed files with 3 additions and 1 deletions
3
.github/workflows/tests.yml
vendored
3
.github/workflows/tests.yml
vendored
|
|
@ -8,6 +8,9 @@ on:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
|
|
||||||
|
env:
|
||||||
|
UV_FROZEN: "1"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
lint:
|
lint:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
|
||||||
1
Makefile
1
Makefile
|
|
@ -37,7 +37,6 @@ snapshots-create:
|
||||||
.PHONY: old_version_tests
|
.PHONY: old_version_tests
|
||||||
old_version_tests:
|
old_version_tests:
|
||||||
UV_PROJECT_ENVIRONMENT=.venv_39 uv run --python 3.9 -m pytest
|
UV_PROJECT_ENVIRONMENT=.venv_39 uv run --python 3.9 -m pytest
|
||||||
UV_PROJECT_ENVIRONMENT=.venv_39 uv run --python 3.9 -m mypy .
|
|
||||||
|
|
||||||
.PHONY: build-docs
|
.PHONY: build-docs
|
||||||
build-docs:
|
build-docs:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue