#! /usr/bin/env python3 # # SPDX-License-Identifier: GPL-2.0-or-later # # test/smoke/smoke.py - Python smoke tests # # Copyright Red Hat # Author: David Gibson import exeter @exeter.test def py_test_libraries() -> None: """Check test in Python have access to the libraries we need""" import tunbridge import tasst print(f"Imported exeter: {exeter}") print(f"Imported tunbridge: {tunbridge}") print(f"Imported tasst: {tasst}") if __name__ == '__main__': exeter.main()