Skip to content

Commit

Permalink
8906 Bump connector's version
Browse files Browse the repository at this point in the history
  • Loading branch information
Zirochkaa committed Jan 31, 2022
1 parent 425a59f commit 4569705
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@
- name: Delighted
sourceDefinitionId: cc88c43f-6f53-4e8a-8c4d-b284baaf9635
dockerRepository: airbyte/source-delighted
dockerImageTag: 0.1.2
dockerImageTag: 0.1.3
documentationUrl: https://docs.airbyte.io/integrations/sources/delighted
icon: delighted.svg
sourceType: api
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1307,7 +1307,7 @@
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-delighted:0.1.2"
- dockerImage: "airbyte/source-delighted:0.1.3"
spec:
documentationUrl: "https://docsurl.com"
connectionSpecification:
Expand Down

1 comment on commit 4569705

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

SonarQube Report

SonarQube report for Airbyte Connectors Source Delighted(#9550)

Measures

Name Value Name Value Name Value
Vulnerabilities 0 Duplicated Lines (%) 0.0 Reliability Rating A
Lines to Cover 131 Code Smells 24 Lines of Code 200
Quality Gate Status OK Bugs 0 Security Rating A
Coverage 61.1 Duplicated Blocks 0 Blocker Issues 0
Critical Issues 0 Major Issues 3 Minor Issues 21

Detected Issues

Rule File Description Message
python:isort_need_format (MINOR) unit_tests/unit_test.py Please run one of the commands: "isort <path_to_updated_folder>" or "./gradlew format" 1 code part(s) should be updated.
flake8:E501 (MAJOR) unit_tests/unit_test.py:39 line too long (82 > 79 characters) line too long (197 > 140 characters)
flake8:E501 (MAJOR) unit_tests/unit_test.py:46 line too long (82 > 79 characters) line too long (319 > 140 characters)
flake8:E501 (MAJOR) unit_tests/unit_test.py:47 line too long (82 > 79 characters) line too long (318 > 140 characters)
python:mypy_no_untyped_def (MINOR) source_delighted/source.py:74 Check that every function has an annotation Function is missing a type annotation for one or more arguments . Code line: def parse_response(self, response: requests.Response, stream_state...
python:mypy_override (MINOR) source_delighted/source.py:74 Check that method override is compatible with base class Signature of "parse_response" incompatible with supertype "DelightedStream" . Code line: def parse_response(self, response: requests.Response, stream_state...
python:mypy_no_untyped_def (MINOR) source_delighted/source.py:85 Check that every function has an annotation Function is missing a type annotation for one or more arguments . Code line: def path(self, **kwargs) -> str:
python:mypy_return (MINOR) source_delighted/source.py:88 Check that function always returns a value Missing return statement . Code line: def next_page_token(self, response: requests.Response) -> Optional...
python:mypy_no_untyped_def (MINOR) source_delighted/source.py:103 Check that every function has an annotation Function is missing a type annotation for one or more arguments . Code line: def path(self, **kwargs) -> str:
python:mypy_no_untyped_def (MINOR) source_delighted/source.py:115 Check that every function has an annotation Function is missing a type annotation for one or more arguments . Code line: def path(self, **kwargs) -> str:
python:mypy_no_untyped_def (MINOR) source_delighted/source.py:126 Check that every function has an annotation Function is missing a type annotation for one or more arguments . Code line: def path(self, **kwargs) -> str:
python:isort_need_format (MINOR) main.py Please run one of the commands: "isort <path_to_updated_folder>" or "./gradlew format" 1 code part(s) should be updated.
python:mypy_no_untyped_def (MINOR) source_delighted/source.py:144 Check that every function has an annotation Function is missing a type annotation . Code line: def _get_authenticator(self, config):
python:mypy_no_untyped_def (MINOR) integration_tests/acceptance.py:12 Check that every function has an annotation Function is missing a return type annotation . Code line: def connector_setup():
python:mypy_import (MINOR) source_delighted/source.py:11 Require that imported module can be found or has stubs Library stubs not installed for "requests" (or incompatible with Python 3.7) . Code line: import requests
python:mypy_no_untyped_def (MINOR) source_delighted/source.py:30 Check that every function has an annotation Function is missing a type annotation for one or more arguments . Code line: def init(self, since: int, **kwargs):
python:mypy_return (MINOR) source_delighted/source.py:34 Check that function always returns a value Missing return statement . Code line: def next_page_token(self, response: requests.Response) -> Optional...
python:mypy_valid_type (MINOR) source_delighted/source.py:41 Check that type (annotation) is valid Function "builtins.any" is not valid as a type . Code line: ...e: Mapping[str, Any], stream_slice: Mapping[str, any] = None, next_pag...
python:mypy_no_untyped_def (MINOR) source_delighted/source.py:48 Check that every function has an annotation Function is missing a type annotation for one or more arguments . Code line: def parse_response(self, response: requests.Response, **kwargs) ->...
python:mypy_no_untyped_def (MINOR) source_delighted/source.py:55 Check that every function has an annotation Function is missing a return type annotation . Code line: def limit(self):
python:mypy_no_untyped_def (MINOR) source_delighted/source.py:67 Check that every function has an annotation Function is missing a type annotation . Code line: def request_params(self, stream_state=None, **kwargs):
python:mypy_no_untyped_def (MINOR) source_delighted/source.py:129 Check that every function has an annotation Function is missing a type annotation . Code line: def request_params(self, stream_state=None, **kwargs):
python:mypy_no_untyped_def (MINOR) source_delighted/source.py:148 Check that every function has an annotation Function is missing a type annotation for one or more arguments . Code line: def check_connection(self, logger, config) -> Tuple[bool, any]:
python:mypy_valid_type (MINOR) source_delighted/source.py:148 Check that type (annotation) is valid Function "builtins.any" is not valid as a type . Code line: def check_connection(self, logger, config) -> Tuple[bool, any]:

Coverage (61.1%)

File Coverage File Coverage
integration_tests/acceptance.py 0.0 main.py 0.0
setup.py 0.0 source_delighted/init.py 100.0
source_delighted/source.py 81.3 unit_tests/unit_test.py 0.0

Please sign in to comment.