Skip to content

Commit 13abb68

Browse files
authored
[0/n] Only run tests on py3.9, not mypy (openai#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) * openai#324 * openai#322 * openai#321 * openai#320 * __->__ openai#319
2 parents a34f34d + a7a6fe7 commit 13abb68

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/tests.yml

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ on:
88
branches:
99
- main
1010

11+
env:
12+
UV_FROZEN: "1"
13+
1114
jobs:
1215
lint:
1316
runs-on: ubuntu-latest

Makefile

-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ snapshots-create:
3737
.PHONY: old_version_tests
3838
old_version_tests:
3939
UV_PROJECT_ENVIRONMENT=.venv_39 uv run --python 3.9 -m pytest
40-
UV_PROJECT_ENVIRONMENT=.venv_39 uv run --python 3.9 -m mypy .
4140

4241
.PHONY: build-docs
4342
build-docs:

0 commit comments

Comments
 (0)