Skip to content

Commit

Permalink
Release v3.86.1 (#3780)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] committed May 7, 2024
1 parent c350835 commit 31f2873
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
2 changes: 1 addition & 1 deletion cumulusci/__about__.py
@@ -1 +1 @@
__version__ = "3.86.0"
__version__ = "3.86.1"
3 changes: 2 additions & 1 deletion cumulusci/core/runtime.py
Expand Up @@ -83,7 +83,8 @@ def _load_project_config(self, *args, **kwargs):
self.project_config = self.project_config_cls(
self.universal_config, *args, **kwargs
)
self.project_config._add_tasks_directory_to_python_path()
if self.project_config is not None:
self.project_config._add_tasks_directory_to_python_path()

def _load_keychain(self):
if self.keychain is not None:
Expand Down
5 changes: 3 additions & 2 deletions cumulusci/utils/xml/robot_xml.py
@@ -1,7 +1,7 @@
import re
from typing import Callable, Dict, NamedTuple

from robot.api import ExecutionResult, ResultVisitor
from robot.api import ExecutionResult, ResultVisitor # type: ignore
from robot.result.model import TestCase

UNITS = {
Expand Down Expand Up @@ -53,7 +53,8 @@ def log_perf_summary_from_xml(
Supply a formatter that takes a PerfSummary triple if the default isn't a good fit:
f(test_name: str, metrics: Dict[str, float], test: robot.result.model.TestCase)"""
f(test_name: str, metrics: Dict[str, float], test: robot.result.model.TestCase)
"""
result = ExecutionResult(robot_xml)
pl = _perf_logger(logger_func, formatter_func)
next(pl) # start the generator
Expand Down
10 changes: 8 additions & 2 deletions docs/history.md
Expand Up @@ -2,6 +2,14 @@

<!-- latest-start -->

## v3.86.1 (2024-05-06)

<!-- Release notes generated using configuration in .github/release.yml at main -->

**Full Changelog**: https://github.com/SFDO-Tooling/CumulusCI/compare/v3.86.0...v3.86.1

<!-- latest-stop -->

## v3.86.0 (2024-03-27)

<!-- Release notes generated using configuration in .github/release.yml at main -->
Expand All @@ -14,8 +22,6 @@

**Full Changelog**: https://github.com/SFDO-Tooling/CumulusCI/compare/v3.85.0...v3.86.0

<!-- latest-stop -->

## v3.85.0 (2024-03-13)

<!-- Release notes generated using configuration in .github/release.yml at main -->
Expand Down

0 comments on commit 31f2873

Please sign in to comment.