mirror of
https://github.com/microsoft/autogen.git
synced 2025-10-12 00:20:50 +00:00
16 lines
324 B
Python
16 lines
324 B
Python
![]() |
# Disable ruff linter for template files
|
||
|
# ruff: noqa: F821 E722
|
||
|
import sys
|
||
|
|
||
|
|
||
|
__TEST__
|
||
|
|
||
|
|
||
|
def run_tests(candidate):
|
||
|
try:
|
||
|
check(candidate)
|
||
|
# We can search for this string in the output
|
||
|
print("ALL TESTS PASSED !#!#")
|
||
|
except AssertionError:
|
||
|
sys.exit("SOME TESTS FAILED - TRY AGAIN !#!#")
|