Skip to content

Commit ac0c995

Browse files
authored
[e2e] Remove GHA workflow that creates e2e services docker (#24)
* [e2e] Remove GHA workflow that creates e2e services docker * Fix pylint warnings
1 parent 0918076 commit ac0c995

File tree

8 files changed

+10
-55
lines changed

8 files changed

+10
-55
lines changed

.github/workflows/services.yaml

Lines changed: 0 additions & 53 deletions
This file was deleted.

python/restate/context.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# directory of this repository or package, or at
99
# https://github.com/restatedev/sdk-typescript/blob/main/LICENSE
1010
#
11-
# pylint: disable=R0913,C0301
11+
# pylint: disable=R0913,C0301,R0917
1212
"""
1313
Restate Context
1414
"""

python/restate/handler.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
# directory of this repository or package, or at
99
# https://github.com/restatedev/sdk-typescript/blob/main/LICENSE
1010
#
11+
12+
# pylint: disable=R0917
1113
"""
1214
This module contains the definition of the Handler class,
1315
which is used to define the handlers for the services.

python/restate/object.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
# directory of this repository or package, or at
99
# https://github.com/restatedev/sdk-typescript/blob/main/LICENSE
1010
#
11+
# pylint: disable=R0917
1112
"""
1213
This module defines the Service class for representing a restate service.
1314
"""

python/restate/server_context.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
# directory of this repository or package, or at
99
# https://github.com/restatedev/sdk-typescript/blob/main/LICENSE
1010
#
11+
# pylint: disable=R0917
1112
"""This module contains the restate context implementation based on the server"""
1213

1314
from datetime import timedelta

python/restate/service.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
# directory of this repository or package, or at
99
# https://github.com/restatedev/sdk-typescript/blob/main/LICENSE
1010
#
11+
12+
# pylint: disable=R0917
1113
"""
1214
This module defines the Service class for representing a restate service.
1315
"""

python/restate/vm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"""
1212
wrap the restate._internal.PyVM class
1313
"""
14-
# pylint: disable=E1101
14+
# pylint: disable=E1101,R0917
1515

1616
from dataclasses import dataclass
1717
import typing

python/restate/workflow.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
# directory of this repository or package, or at
99
# https://github.com/restatedev/sdk-typescript/blob/main/LICENSE
1010
#
11+
12+
# pylint: disable=R0917
1113
"""
1214
This module defines the Service class for representing a restate service.
1315
"""

0 commit comments

Comments
 (0)