Set test_basic_traffic as smoke test

Smoke tests cover the most basic functionality and help save time if
they do identify a problem. Test test_basic_traffic is a good candidate
to be defined as a smoke test [1]. We also set attribute "slow" [2] to
signal that the test takes a long time to run.

[1] https://docs.openstack.org/tempest/latest/HACKING.html#smoke-attribute
[2] https://docs.openstack.org/tempest/latest/HACKING.html#slow-attribute

Change-Id: I11aab764763a12e4e4434ce99ae47ab02e5b033e
diff --git a/octavia_tempest_plugin/tests/scenario/v2/test_traffic_ops.py b/octavia_tempest_plugin/tests/scenario/v2/test_traffic_ops.py
index 0d49d67..83049c7 100644
--- a/octavia_tempest_plugin/tests/scenario/v2/test_traffic_ops.py
+++ b/octavia_tempest_plugin/tests/scenario/v2/test_traffic_ops.py
@@ -198,6 +198,7 @@
                                     protocol_port=protocol_port,
                                     protocol=protocol)
 
+    @decorators.attr(type=['smoke', 'slow'])
     @testtools.skipIf(CONF.load_balancer.test_with_noop,
                       'Traffic tests will not work in noop mode.')
     @decorators.idempotent_id('6751135d-e15a-4e22-89f4-bfcc3408d424')