Hotfix for fuel-qa docs to apply zero-errors in verify-fuel-qa-docs job

Change-Id: Ic3baa6b56aacaea3c01682f5410abf2ef8b34693
Related-Bug: #1515234
This commit is contained in:
Maksym Strukov 2015-11-11 15:30:19 +02:00
parent d0165ed045
commit cbb12596c5
6 changed files with 63 additions and 8 deletions

View File

@ -10,4 +10,4 @@ Documentation for the QA test code repo
helpers.rst
base_tests.rst
testrail.rst
system_tests.rst

53
doc/system_tests.rst Normal file
View File

@ -0,0 +1,53 @@
.. index:: System tests
System tests
************
General tests
=============
Actions Base
------------
.. automodule:: system_test.tests.actions_base
:members:
Base actions factory
--------------------
.. automodule:: system_test.tests.base_actions_factory
:members:
Case deploy Environment
-----------------------
.. automodule:: system_test.tests.test_create_deploy_ostf
:members:
Deploy cluster and check RadosGW
--------------------------------
.. automodule:: system_test.tests.test_deploy_check_rados
:members:
Strength tests
==============
Destroy controllers
-------------------
.. automodule:: system_test.tests.strength.destroy_controllers
:members:
Strength Base
-------------
.. automodule:: system_test.tests.strength.strength_base
:members:
Helpers
=======
Decorators
----------
.. automodule:: system_test.helpers.decorators
:members:
Utils
-----
.. automodule:: system_test.helpers.utils
:members:

View File

@ -21,8 +21,9 @@ def copy_func(f, name=None):
"""
:param f:
:param name:
:return: a function with same code, globals, defaults, closure, and
name (or provide a new name)
:return: a function with same code, globals, defaults, closure,
and name (or provide a new name)
"""
fn = types.FunctionType(f.__code__, f.__globals__, name or f.__name__,

View File

@ -34,8 +34,9 @@ class PrepareBase(base_actions_factory.BaseActionsFactory):
_action_setup_master - setup master node in environment
_action_config_release - preconfig releases if it needs
_action_make_slaves - boot slaves and snapshop environment with
bootstraped slaves
bootstraped slaves
_action_revert_slaves - revert environment with bootstraped slaves
"""
def _start_case(self):

View File

@ -25,7 +25,6 @@ from system_test.helpers.decorators import action
class DeployCheckRadosGW(actions_base.ActionsBase):
"""Deploy cluster and check RadosGW
Scenario:
1. Create Environment
2. Add nodes to Environment
@ -33,9 +32,10 @@ class DeployCheckRadosGW(actions_base.ActionsBase):
4. Deploy Environment
5. Run network checker
6. Check HAProxy backends
5. Check ceph status
6. Run OSTF
7. Check the radosqw daemon is started
7. Check ceph status
8. Run OSTF
9. Check the radosqw daemon is started
"""
base_group = ['system_test',