pytest-argus-reporter 0.15.8__tar.gz → 0.15.10__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (19) hide show
  1. {pytest_argus_reporter-0.15.8/pytest_argus_reporter.egg-info → pytest_argus_reporter-0.15.10}/PKG-INFO +1 -1
  2. {pytest_argus_reporter-0.15.8 → pytest_argus_reporter-0.15.10/pytest_argus_reporter.egg-info}/PKG-INFO +1 -1
  3. {pytest_argus_reporter-0.15.8 → pytest_argus_reporter-0.15.10}/pytest_argus_reporter.py +5 -1
  4. {pytest_argus_reporter-0.15.8 → pytest_argus_reporter-0.15.10}/.envrc +0 -0
  5. {pytest_argus_reporter-0.15.8 → pytest_argus_reporter-0.15.10}/LICENSE +0 -0
  6. {pytest_argus_reporter-0.15.8 → pytest_argus_reporter-0.15.10}/MANIFEST.in +0 -0
  7. {pytest_argus_reporter-0.15.8 → pytest_argus_reporter-0.15.10}/README.md +0 -0
  8. {pytest_argus_reporter-0.15.8 → pytest_argus_reporter-0.15.10}/noxfile.py +0 -0
  9. {pytest_argus_reporter-0.15.8 → pytest_argus_reporter-0.15.10}/pyproject.toml +0 -0
  10. {pytest_argus_reporter-0.15.8 → pytest_argus_reporter-0.15.10}/pytest_argus_reporter.egg-info/SOURCES.txt +0 -0
  11. {pytest_argus_reporter-0.15.8 → pytest_argus_reporter-0.15.10}/pytest_argus_reporter.egg-info/dependency_links.txt +0 -0
  12. {pytest_argus_reporter-0.15.8 → pytest_argus_reporter-0.15.10}/pytest_argus_reporter.egg-info/entry_points.txt +0 -0
  13. {pytest_argus_reporter-0.15.8 → pytest_argus_reporter-0.15.10}/pytest_argus_reporter.egg-info/requires.txt +0 -0
  14. {pytest_argus_reporter-0.15.8 → pytest_argus_reporter-0.15.10}/pytest_argus_reporter.egg-info/top_level.txt +0 -0
  15. {pytest_argus_reporter-0.15.8 → pytest_argus_reporter-0.15.10}/setup.cfg +0 -0
  16. {pytest_argus_reporter-0.15.8 → pytest_argus_reporter-0.15.10}/tests/conftest.py +0 -0
  17. {pytest_argus_reporter-0.15.8 → pytest_argus_reporter-0.15.10}/tests/test_argus_reporter.py +0 -0
  18. {pytest_argus_reporter-0.15.8 → pytest_argus_reporter-0.15.10}/tests/test_slices.py +0 -0
  19. {pytest_argus_reporter-0.15.8 → pytest_argus_reporter-0.15.10}/tests/test_xdist.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pytest-argus-reporter
3
- Version: 0.15.8
3
+ Version: 0.15.10
4
4
  Summary: A simple plugin to report results of test into argus
5
5
  Author-email: Scylladb <qa@scylladb.com>
6
6
  License-Expression: Apache-2.0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pytest-argus-reporter
3
- Version: 0.15.8
3
+ Version: 0.15.10
4
4
  Summary: A simple plugin to report results of test into argus
5
5
  Author-email: Scylladb <qa@scylladb.com>
6
6
  License-Expression: Apache-2.0
@@ -183,7 +183,11 @@ class ArgusReporter(object): # pylint: disable=too-many-instance-attributes
183
183
 
184
184
  @cached_property
185
185
  def argus_client(self):
186
- return ArgusGenericClient(auth_token=self.api_key, base_url=self.base_url, extra_headers=self.extra_headers)
186
+ return ArgusGenericClient(
187
+ auth_token=self.api_key,
188
+ base_url=self.base_url,
189
+ extra_headers=self.extra_headers,
190
+ )
187
191
 
188
192
  def append_test_data(self, request, test_data):
189
193
  self.test_data[request.node.nodeid].update(**test_data)