mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
a1b0a28f9c
* prepare eval package * add gaia benchmark to eval package * update telemetry * renaming * organization * organize into namespace packages; rename to labs * update cookie cutter instruction * update gaia runner * use temp directory * Rename "labs" --> "lab" * update * update gaia sample * update status * Add lighting project * Add listing for lighting
16 lines
367 B
Python
16 lines
367 B
Python
# Copyright (c) Microsoft. All rights reserved.
|
|
|
|
"""Tests for lighting module."""
|
|
|
|
import pytest
|
|
from agent_framework_lab_lighting import __version__
|
|
|
|
|
|
class TestLighting:
|
|
"""Test the lighting module."""
|
|
|
|
def test_version(self):
|
|
"""Test package version is defined."""
|
|
assert __version__ is not None
|
|
assert __version__ == "0.1.0b1"
|