From f7c89d5545e27cba5c1d46f4d78f3e42eebd26d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20H=C3=B8xbro=20Hansen?= Date: Fri, 25 Oct 2024 10:44:42 +0200 Subject: [PATCH] ci: add pytest-asyncio to test (#6425) --- .pre-commit-config.yaml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 37fa992a5d..bc75780b0c 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -17,7 +17,7 @@ repos: - id: check-json - id: detect-private-key - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.6.9 + rev: v0.7.1 hooks: - id: ruff files: holoviews/|scripts/ diff --git a/pyproject.toml b/pyproject.toml index 45105a718c..48e84e3d21 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,7 +48,7 @@ HoloViz = "https://holoviz.org/" [project.optional-dependencies] recommended = ["matplotlib >=3", "plotly >=4.0"] -tests = ["pytest", "pytest-rerunfailures"] +tests = ["pytest", "pytest-rerunfailures", "pytest-asyncio"] [project.scripts] holoviews = "holoviews.util.command:main"