Skip to content

Commit

Permalink
feat(deps)!: update openjd-model to 0.5.* (#194)
Browse files Browse the repository at this point in the history
feat(deps)!: update pytest-cov requirement from ==5.0.* to ==6.0.* (#190)

Updates the requirements on [pytest-cov](https://github.com/pytest-dev/pytest-cov) to permit the latest version.
- [Changelog](https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst)
- [Commits](pytest-dev/pytest-cov@v5.0.0...v6.0.0)

---
updated-dependencies:
- dependency-name: pytest-cov
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Marshall Jackson <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
amarsjac and dependabot[bot] authored Nov 13, 2024
1 parent 5d5493c commit 61bac54
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ classifiers = [
"Topic :: Software Development :: Libraries"
]
dependencies = [
"openjd-model == 0.4.*",
"openjd-model == 0.5.*",
"pywin32 == 308; platform_system == 'Windows'",
"psutil >= 5.9,< 6.2; platform_system == 'Windows'",
]
Expand Down Expand Up @@ -99,7 +99,7 @@ mypy_path = "src"

# See: https://docs.pydantic.dev/mypy_plugin/
# - Helps mypy understand pydantic typing.
plugins = "pydantic.mypy"
plugins = "pydantic.v1.mypy"

[tool.ruff]
line-length = 100
Expand Down
6 changes: 3 additions & 3 deletions test/openjd/sessions/test_session.py
Original file line number Diff line number Diff line change
Expand Up @@ -797,7 +797,7 @@ def test_run_task_fail_early(self) -> None:
assert session.state == SessionState.READY_ENDING
assert session.action_status == ActionStatus(
state=ActionState.FAILED,
fail_message="Error resolving format string: Failed to parse interpolation expression in import time; time.sleep(0.5); print('{{ Task.Param.P }}'); print('{{ Param.J }}') at [37, 55]. Expression: Task.Param.P . Reason: Expression failed validation: Task.Param.P has no value.",
fail_message="Error resolving format string: Failed to parse interpolation expression at [37, 55]. Expression: Task.Param.P . Reason: Expression failed validation: Task.Param.P has no value.",
)

def test_run_task_fail_run(self) -> None:
Expand Down Expand Up @@ -1218,7 +1218,7 @@ def test_enter_environment_fail_early(self) -> None:
assert session.state == SessionState.READY_ENDING
assert session.action_status == ActionStatus(
state=ActionState.FAILED,
fail_message="Error resolving format string: Failed to parse interpolation expression in import time; time.sleep(0.5); print('{{ Task.Param.P }}'); print('{{ Param.J }}') at [37, 55]. Expression: Task.Param.P . Reason: Expression failed validation: Task.Param.P has no value.",
fail_message="Error resolving format string: Failed to parse interpolation expression at [37, 55]. Expression: Task.Param.P . Reason: Expression failed validation: Task.Param.P has no value.",
)

def test_enter_environment_fail_run(self) -> None:
Expand Down Expand Up @@ -1527,7 +1527,7 @@ def test_exit_environment_fail_early(self) -> None:
assert session.state == SessionState.READY_ENDING
assert session.action_status == ActionStatus(
state=ActionState.FAILED,
fail_message="Error resolving format string: Failed to parse interpolation expression in import time; time.sleep(0.5); print('{{ Task.Param.P }}'); print('{{ Param.J }}') at [37, 55]. Expression: Task.Param.P . Reason: Expression failed validation: Task.Param.P has no value.",
fail_message="Error resolving format string: Failed to parse interpolation expression at [37, 55]. Expression: Task.Param.P . Reason: Expression failed validation: Task.Param.P has no value.",
)

def test_exit_environment_fail_run(self) -> None:
Expand Down

0 comments on commit 61bac54

Please sign in to comment.