Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ repos:
- id: check-yaml

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.4.8
rev: v0.8.6
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix, --show-fixes]
Expand All @@ -31,7 +31,7 @@ repos:

# Type checking
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.13.0
rev: v1.14.1
hooks:
- id: mypy
files: 'src/.*\.py$'
Expand Down
1 change: 1 addition & 0 deletions tests/contrib/test_start_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from unittest import mock

import pytest

import workflows.contrib.start_service


Expand Down
1 change: 1 addition & 0 deletions tests/frontend/test_frontend.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from unittest import mock

import pytest

import workflows.frontend
from workflows.services.common_service import CommonService

Expand Down
1 change: 1 addition & 0 deletions tests/recipe/test_recipe.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from unittest import mock

import pytest

import workflows
import workflows.recipe

Expand Down
1 change: 1 addition & 0 deletions tests/recipe/test_validate.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
from unittest import mock

import pytest

import workflows
from workflows.recipe.validate import main, validate_recipe

Expand Down
1 change: 1 addition & 0 deletions tests/recipe/test_wrapped_recipe.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from unittest import mock

import pytest

import workflows.transport.common_transport
from workflows.recipe import Recipe
from workflows.recipe.wrapper import RecipeWrapper
Expand Down
1 change: 1 addition & 0 deletions tests/services/test_common_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
from unittest import mock

import pytest

from workflows.services.common_service import Commands, CommonService, Priority


Expand Down
1 change: 1 addition & 0 deletions tests/services/test_sample_producer.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from unittest import mock

import pytest

import workflows.services
import workflows.services.sample_producer
from workflows.transport.offline_transport import OfflineTransport
Expand Down
1 change: 1 addition & 0 deletions tests/transport/test_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from unittest import mock

import pytest

import workflows
from workflows.transport.common_transport import CommonTransport

Expand Down
1 change: 1 addition & 0 deletions tests/transport/test_middleware.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
from unittest import mock

import pytest

from workflows.transport import middleware
from workflows.transport.offline_transport import OfflineTransport

Expand Down
1 change: 1 addition & 0 deletions tests/transport/test_offline.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
from unittest import mock

import pytest

import workflows.transport
from workflows.transport.offline_transport import OfflineTransport

Expand Down
1 change: 1 addition & 0 deletions tests/transport/test_pika.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

import pika
import pytest

import workflows.transport.pika_transport
from workflows.transport.common_transport import TemporarySubscription
from workflows.transport.pika_transport import PikaTransport, _PikaThread
Expand Down
1 change: 1 addition & 0 deletions tests/transport/test_stomp.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

import pytest
import stomp as stomppy

import workflows
import workflows.transport
from workflows.transport.common_transport import TemporarySubscription
Expand Down
Loading