openai/openai-python

Public

mirrored from https://github.com/openai/openai-pythonAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v1.13.0

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

noxfile.py

9lines · modecode

1import nox
2
3
4@nox.session(reuse_venv=True, name="test-pydantic-v1")
5def test_pydantic_v1(session: nox.Session) -> None:
6 session.install("-r", "requirements-dev.lock")
7 session.install("pydantic<2")
8
9 session.run("pytest", "--showlocals", "--ignore=tests/functional", *session.posargs)
10