It was noticed that this topology doesn't converge when there are IPv6
configurations, so this commit makes the tests to be skipped when the
version is 2.X.Y.
Signed-off-by: Rafael Zalamena <rzalamena@opensourcerouting.org
# After loading the configurations, this function loads configured daemons.
tgen.start_router()
+ has_version_20 = False
+ for router in tgen.routers().values():
+ if router.has_version('<', '3'):
+ has_version_20 = True
+
+ if has_version_20:
+ logger.info('Skipping ISIS tests for FRR 2.0')
+ tgen.set_error('ISIS has convergence problems with IPv6')
+
def teardown_module(mod):
"Teardown the pytest environment"