@@ -69,23 +69,23 @@ Example of :code:`pytest.ini`:
6969 rp_endpoint = http://192.168.1.10:8080
7070 rp_project = user_personal
7171 rp_launch = AnyLaunchName
72- rp_launch_tags = 'PyTest' 'Smoke'
72+ rp_launch_attributes = 'PyTest' 'Smoke'
7373 rp_launch_description = 'Smoke test'
7474 rp_ignore_errors = True
75- rp_ignore_tags = 'xfail' 'usefixture'
75+ rp_ignore_attributes = 'xfail' 'usefixture'
7676
7777 The following parameters are optional:
7878
7979- :code: `rp_launch = AnyLaunchName ` - launch name (could be overridden
8080 by pytest --rp-launch option, default value is 'Pytest Launch')
81- - :code: `rp_launch_tags = 'PyTest' 'Smoke' ` - list of tags for launch
82- - :code: `rp_tests_tags = 'PyTest' 'Smoke' ` - list of tags that will be added for each item in the launch
81+ - :code: `rp_launch_attributes = 'PyTest' 'Smoke' ` - list of attributes for launch
82+ - :code: `rp_tests_attributes = 'PyTest' 'Smoke' ` - list of attributes that will be added for each item in the launch
8383- :code: `rp_launch_description = 'Smoke test' ` - launch description (could be overridden
8484 by pytest --rp-launch-description option, default value is '')
8585
8686- :code: `rp_log_batch_size = 20 ` - size of batch log request
8787- :code: `rp_ignore_errors = True ` - Ignore Report Portal errors (exit otherwise)
88- - :code: `rp_ignore_tags = 'xfail' 'usefixture' ` - Ignore specified pytest markers
88+ - :code: `rp_ignore_attributes = 'xfail' 'usefixture' ` - Ignore specified pytest markers
8989- :code: `rp_hierarchy_dirs = True ` - Enables hierarchy for tests directories, default `False `. Doesn't support 'xdist' plugin.
9090- :code: `rp_hierarchy_module = True ` - Enables hierarchy for module, default `True `. Doesn't support 'xdist' plugin.
9191- :code: `rp_hierarchy_class = True ` - Enables hierarchy for class, default `True `. Doesn't support 'xdist' plugin.
@@ -99,7 +99,7 @@ The following parameters are optional:
9999
100100
101101If you like to override the above parameters from command line, or from CI environment based on your build, then pass
102- - :code: `-o "rp_launch_tags =Smoke Tests" ` during invocation.
102+ - :code: `-o "rp_launch_attributes =Smoke Tests" ` during invocation.
103103
104104Examples
105105~~~~~~~~
@@ -174,8 +174,8 @@ Plugin can report doc-strings of tests as :code:`descriptions`:
174174 """
175175 pass
176176
177- Pytest markers will be attached as :code: `tags ` to Report Portal items.
178- In the following example tags 'linux' and 'win32' will be used:
177+ Pytest markers will be attached as :code: `attributes ` to Report Portal items.
178+ In the following example attributes 'linux' and 'win32' will be used:
179179
180180.. code-block :: python
181181
@@ -186,7 +186,7 @@ In the following example tags 'linux' and 'win32' will be used:
186186 def test_one ():
187187 pass
188188
189- If you don't want to attach specific markers, list them in :code: `rp_ignore_tags ` parameter
189+ If you don't want to attach specific markers, list them in :code: `rp_ignore_attributes ` parameter
190190
191191
192192Launching
0 commit comments