]> git.proxmox.com Git - mirror_frr.git/blame - python/runtests.py
build: exclude a few more things from frr.xref
[mirror_frr.git] / python / runtests.py
CommitLineData
36a8fdfd
DL
1import pytest
2import sys
3import os
4
5try:
6 import _clippy
7except ImportError:
8 sys.stderr.write('''these tests need to be run with the _clippy C extension
9module available. Try running "clippy runtests.py ...".
10''')
11 sys.exit(1)
12
13os.chdir(os.path.dirname(os.path.abspath(__file__)))
14raise SystemExit(pytest.main(sys.argv[1:]))