mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
e7cd03b32e
* Small fix in dotnet conformance tests * Added CopilotStudioAgent implementation * Added examples * Updated package README * Small fixes * Small improvements * Fixed dotnet tests * Add unit tests * Updated tests * Small updates * Small test fixes * Revert "Small test fixes" This reverts commit983ac44a70. * Small fixes in documentation * Updated test configuration * Revert "Updated test configuration" This reverts commit2a16fea815. * Small fix * Reverted TODO item * Small suppressions * More fixes * Small fixes * Fixed tests * Removed disallow_any_unimported rule in all packages * Fixes
29 lines
613 B
Python
29 lines
613 B
Python
# Copyright (c) Microsoft. All rights reserved.
|
|
|
|
|
|
def test_self_through_main() -> None:
|
|
try:
|
|
from agent_framework.copilotstudio import __version__
|
|
except ImportError:
|
|
__version__ = None
|
|
|
|
assert __version__ is not None
|
|
|
|
|
|
def test_self() -> None:
|
|
try:
|
|
from agent_framework_copilotstudio import __version__
|
|
except ImportError:
|
|
__version__ = None
|
|
|
|
assert __version__ is not None
|
|
|
|
|
|
def test_agent_framework() -> None:
|
|
try:
|
|
from agent_framework import __version__
|
|
except ImportError:
|
|
__version__ = None
|
|
|
|
assert __version__ is not None
|