mirror of
https://github.com/cloudflare/cloudflare-python.git
synced 2026-01-11 19:57:00 +00:00
9 lines
295 B
Python
9 lines
295 B
Python
import nox
|
|
|
|
|
|
@nox.session(reuse_venv=True, name="test-pydantic-v1")
|
|
def test_pydantic_v1(session: nox.Session) -> None:
|
|
session.install("-r", "requirements-dev.lock")
|
|
session.install("pydantic<2")
|
|
|
|
session.run("pytest", "--showlocals", "--ignore=tests/functional", *session.posargs)
|