pytest.mark.skip
instead of xfail
to avoid tracebacks on validations that aren't in place yet
#224
Labels
priority_low
Low priority
There are marked
xfail
tests testing invalid values of a range, which we want to cover, butflow_manager
for instance, hasn't implemented complete API validation yet kytos-ng/flow_manager#43, so these tests can result in tracebacks generating more noise in the tests logs, so we shouldskip
them for now instead ofxfail
. Once it's in place then we can allow them to run again.Examples of tracebcks, when a
dl_vlan: -1
is sent:Similarly,
dl_vlan
> 4095 will result inOverflowError: int too big to convert
whenof_core/pyof
tries to serialize it.The text was updated successfully, but these errors were encountered: