Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
jbirddog committed Oct 9, 2024
1 parent de6f65c commit 7c1996b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on: [push]
# runs-on: ubuntu-latest
# strategy:
# matrix:
# python-version: ["3.10", "3.11"]
# python-version: ["3.11", "3.12", "3.13"]
# steps:
# - uses: actions/checkout@v3
# - name: Set up Python ${{ matrix.python-version }}
Expand All @@ -22,7 +22,7 @@ on: [push]
# key: poetry-1.6.1
# - uses: snok/install-poetry@v1
# with:
# version: 1.6.1
# version: 1.8.1
# virtualenvs-create: true
# virtualenvs-in-project: true
# installer-parallel: true
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: [ "3.10", "3.11" ]
python-version: [ "3.11", "3.12", "3.13" ]
runs-on: ubuntu-latest
steps:
- name: Check out repository
Expand All @@ -75,7 +75,7 @@ jobs:
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 1.6.1
version: 1.8.1
virtualenvs-create: true
virtualenvs-in-project: true
- name: Load cached venv
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ select = [
ignore = [
"C901", # "complexity" category
"PLR", # "refactoring" category has "too many lines in method" type stuff
"PLC1901",
"PLE1205" # saw this Too many arguments for `logging` format string give a false positive once
]

Expand Down
2 changes: 1 addition & 1 deletion src/spiffworkflow_proxy/plugin_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def command_named(plugin_display_name: str, command_name: str) -> type[Connector
return available_commands_by_plugin[plugin_name][command_name]
except Exception:
return None

@staticmethod
def modules_for_plugin_in_package(
plugin: types.ModuleType, package_name: str | None
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

from spiffworkflow_connector_command.command_interface import CommandResponseDict
from spiffworkflow_connector_command.command_interface import ConnectorCommand
from spiffworkflow_connector_command.command_interface import ConnectorProxyResponseDict


class CombineStrings(ConnectorCommand):
Expand All @@ -22,7 +21,7 @@ def __init__(

def execute(self, config: Any, task_data: Any) -> CommandResponseDict:
"""Execute."""

return {
"body": {
"command_response": {
Expand Down

0 comments on commit 7c1996b

Please sign in to comment.