20 lines
554 B
Python
20 lines
554 B
Python
import pytest
|
|
|
|
# This module is gated by 'hardware' and 'babylin' markers to only run in hardware jobs
|
|
pytestmark = [pytest.mark.hardware, pytest.mark.babylin]
|
|
|
|
|
|
def test_babylin_placeholder():
|
|
"""
|
|
Title: Hardware Test Placeholder
|
|
|
|
Description:
|
|
Minimal placeholder to verify hardware selection and CI plumbing. It
|
|
ensures that -m hardware pipelines and marker-based selection work as
|
|
expected even when no specific hardware assertions are needed.
|
|
|
|
Expected Result:
|
|
- Always passes.
|
|
"""
|
|
assert True
|