Sign in
foss-fpga-tools
/
symbiflow-arch-defs
/
refs/heads/bot-conda-lock-update
/
.
/
utils
/
lib
/
rr_graph
/
__main__.py
blob: 2ba71414508dc07aa606f55e5f79336afb31dd73 [
file
] [
log
] [
blame
] [
edit
]
#!/usr/bin/env python3
from
..
import
rr_graph
if
__name__
==
"__main__"
:
import
doctest
failure_count
,
test_count
=
doctest
.
testmod
(
rr_graph
)
assert
test_count
>
0
assert
failure_count
==
0
,
"Doctests failed!"