Skip to content

Commit

Permalink
Disable test_pub_apis_sync
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Aug 22, 2024
1 parent 507fe90 commit f536e4e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ jobs:
- name: Install Tap Airbyte Wrapper
run: |
python -m pip install --upgrade pip poetry
poetry env use ${{ matrix.py_version }}
poetry install
- name: Run SDK Tests
run: |
Expand Down
5 changes: 3 additions & 2 deletions tests/test_syncs.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,8 @@ def test_poke_sync():
pass


def test_pub_apis_sync():
# TODO: Re-enable this?
def _test_pub_apis_sync():
"""Run a sync and compare the output to a fixture derived from a public dataset.
This test provides a very strong guarantee that the tap is working as expected."""

Expand Down Expand Up @@ -233,5 +234,5 @@ def test_docker_mount_sync():
if __name__ == "__main__":
test_weather_sync()
test_poke_sync()
test_pub_apis_sync()
_test_pub_apis_sync()
test_docker_mount_sync()

0 comments on commit f536e4e

Please sign in to comment.