From 8abfe3a92463738fc8499322477d7349dec12cb9 Mon Sep 17 00:00:00 2001 From: Matthew Thornton <44626690+ThorntonMatthewD@users.noreply.github.com> Date: Mon, 5 Feb 2024 17:17:34 -0500 Subject: [PATCH] Backoff pytest version --- pyproject.toml | 41 +++++++++++++---------------------------- 1 file changed, 13 insertions(+), 28 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 2bda9a0..c51b76c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,37 +4,27 @@ description = "An automated Slack bot to syndicate local events into Slack chann readme = "README.md" requires-python = ">=3.11" license = { text = "MIT" } -version="0.1.0" -authors = [ - { name = "Olivia Sculley", email = "olivia@sculley.dev" }, -] -keywords = [ - "automation", - "black", - "bolt", - "bot", - "pylint", - "pytest", - "slack" -] +version = "0.1.0" +authors = [{ name = "Olivia Sculley", email = "olivia@sculley.dev" }] +keywords = ["automation", "black", "bolt", "bot", "pylint", "pytest", "slack"] dependencies = [ "aiohttp==3.9.3", "fastapi==0.109.2", "python_dateutil==2.8.2", "pytz==2024.1", "slack_bolt==1.18.1", - "uvicorn==0.27.0.post1" + "uvicorn==0.27.0.post1", ] [project.optional-dependencies] test = [ - "black==24.1.1", - "httpx==0.26.0", - "isort==5.13.2", - "pylint==3.0.3", - "pytest==8.0.0", - "pytest-asyncio==0.23.4", - "ssort==0.11.6" + "black==24.1.1", + "httpx==0.26.0", + "isort==5.13.2", + "pylint==3.0.3", + "pytest==7.4.4", + "pytest-asyncio==0.23.4", + "ssort==0.11.6", ] [project.urls] @@ -43,13 +33,8 @@ Documentation = "https://github.com/hackgvl/slack-events-bot/blob/dev/README.md" Repository = "https://github.com/hackgvl/slack-events-bot.git" [tool.pytest.ini_options] -pythonpath = [ - ".", - "src" -] -norecursedirs = [ - "tests/helpers" -] +pythonpath = [".", "src"] +norecursedirs = ["tests/helpers"] [tool.isort] profile = "black"