FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

Bumped pytest by gandiddi · Pull Request #2189 · microsoft/botbuilder-python · GitHub

This repository was archived by the owner on Jan 5, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension .py  (3) .txt  (1) All 2 file types selected
Only manifest files
Viewed files
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Unified
Split
Hide whitespace
Diff view
Unified
Split
Hide whitespace
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@

from typing import List
import aiounittest
import sys
import os

sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), "..")))
from botbuilder.core import BotAdapter, TurnContext
from botbuilder.core.teams import TeamsActivityHandler
from botbuilder.schema import (
Expand Down
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,9 @@ def assert_choice(result, value, index, score, synonym=None):
resolution.score == score
), f"Invalid resolution.score of '{resolution.score}' for '{value}' choice."
if synonym:
assert ( # pylint: disable=assert-on-tuple
resolution.synonym == synonym,
f"Invalid resolution.synonym of '{resolution.synonym}' for '{value}' choice.",
)
assert (
resolution.synonym == synonym
), f"Invalid resolution.synonym of '{resolution.synonym}' for '{value}' choice."


_color_choices: List[str] = ["red", "green", "blue"]
Expand Down
2 changes: 1 addition & 1 deletion libraries/botbuilder-testing/setup.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"botbuilder-core==4.17.0",
"botbuilder-dialogs==4.17.0",
"botbuilder-azure==4.17.0",
"pytest~=7.3.1",
"pytest~=8.3.3",
]

TESTS_REQUIRES = ["aiounittest==1.3.0"]
Expand Down
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pytest-cov>=2.6.0
pytest~=7.3.1
pytest-cov>=5.0.0
pytest~=8.3.3
pyyaml==6.0.1
pytest-asyncio==0.23.8
pytest-asyncio==0.24.0
ddt==1.2.1
setuptools==72.1.0

Back | FazBrowse Home | New Git URL