Skip to content

Commit

Permalink
corrects test suite (#1893)
Browse files Browse the repository at this point in the history
  • Loading branch information
willi-mueller authored Sep 29, 2024
1 parent 5bbf019 commit 3f1938a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/cli/test_init_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
TEMPLATES = ["debug", "default", "arrow", "requests", "dataframe", "intro"]

# a few verified sources we know to exist
SOME_KNOWN_VERIFIED_SOURCES = ["chess", "sql_database", "google_sheets", "pipedrive"]
SOME_KNOWN_VERIFIED_SOURCES = ["chess", "google_sheets", "pipedrive"]


def get_verified_source_candidates(repo_dir: str) -> List[str]:
Expand Down Expand Up @@ -150,7 +150,7 @@ def check_results(items: Dict[str, SourceConfiguration]) -> None:
check_results(core_sources)

verified_sources = _list_verified_sources(DEFAULT_VERIFIED_SOURCES_REPO)
assert set(SOME_KNOWN_VERIFIED_SOURCES).issubset(verified_sources)
assert set(SOME_KNOWN_VERIFIED_SOURCES).issubset(verified_sources.keys())
check_results(verified_sources)
assert len(verified_sources.keys()) > 10

Expand Down

0 comments on commit 3f1938a

Please sign in to comment.