tests: Mark functional tests with functional mark

Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
This commit is contained in:
Sunil Mohan Adapa 2019-03-05 11:17:47 -08:00 committed by James Valleroy
parent 895b5f1fa8
commit b66b15591e
No known key found for this signature in database
GPG Key ID: 77C0C75E7B650808

View File

@ -15,6 +15,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
import pytest
from pytest_bdd import scenarios
from step_definitions.application import *
@ -23,4 +24,7 @@ from step_definitions.service import *
from step_definitions.site import *
from step_definitions.system import *
# Mark all tests are functional
pytestmark = pytest.mark.functional
scenarios('features')