From 0a64e9bd7061550b478be889b0e7fc90f560b06c Mon Sep 17 00:00:00 2001 From: Milan Kubik Date: Fri, 24 Apr 2015 14:39:48 +0200 Subject: Applied tier0 and tier1 marks on unit tests and xmlrpc tests Web UI tests were marked as tier1 tests. The tier system is intended to be used together with CI system to make sure the more complicated tests are being run only when all of the basic functionality is working. The system is using pytest's marker system. E.g. an invocation of all tier1 tests with listing will look like: $ py.test -v -m tier1 ipatests or in case of out of tree tests: $ ipa-run-tests -m tier1 Reviewed-By: Ales 'alich' Marecek --- ipatests/test_pkcs10/test_pkcs10.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'ipatests/test_pkcs10/test_pkcs10.py') diff --git a/ipatests/test_pkcs10/test_pkcs10.py b/ipatests/test_pkcs10/test_pkcs10.py index a36d1883e..86de3c696 100644 --- a/ipatests/test_pkcs10/test_pkcs10.py +++ b/ipatests/test_pkcs10/test_pkcs10.py @@ -30,7 +30,10 @@ from ipalib import pkcs10 from ipapython import ipautil import nss.nss as nss from nss.error import NSPRError +import pytest + +@pytest.mark.tier0 class test_update(object): """ Test the PKCS#10 Parser. -- cgit