Skip to content

Commit

Permalink
airbyte-lib: Fix validation (airbytehq#34599)
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe Reuter authored and jatinyadav-cc committed Feb 26, 2024
1 parent fa6b553 commit 9fcf367
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion airbyte-lib/airbyte_lib/validate.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def validate(connector_dir: str, sample_config: str, *, validate_install_only: b

pip_path = str(venv_path / "bin" / "pip")

_run_subprocess_and_raise_on_failure([pip_path, "install", "-e", connector_dir])
_run_subprocess_and_raise_on_failure([pip_path, "install", connector_dir])

# write basic registry to temp json file
registry = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
description="Test Soutce",
author="Airbyte",
author_email="[email protected]",
packages=find_packages(),
packages=["source_broken"],
entry_points={
"console_scripts": [
"source-broken=source_broken.run:run",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
description="Test Soutce",
author="Airbyte",
author_email="[email protected]",
packages=find_packages(),
packages=["source_test"],
entry_points={
"console_scripts": [
"source-test=source_test.run:run",
Expand Down

0 comments on commit 9fcf367

Please sign in to comment.