Files
agent-framework/python/packages/lab/lighting/tests/test_lighting.py
T
Eric Zhu a1b0a28f9c Python: Introduce Agent Framework Lab with GAIA Benchmark and Lighting project for RL (#719)
* 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
2025-09-17 05:59:21 +00:00

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"