Skip to content

Commit

Permalink
don't explicitly export
Browse files Browse the repository at this point in the history
  • Loading branch information
ric-evans committed Feb 2, 2024
1 parent c48fb30 commit 7cd674b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/wipac_dev_tools_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,13 @@ def test_available() -> None:
}
assert set(wipac_dev_tools.__all__) == all_of_em

# look at dir()
# look at dir() -- includes the non-explicitly exported
availables = set(dir(wipac_dev_tools))
availables = {a for a in availables if not a.startswith("__")}

assert availables == all_of_em | {
"version_info",
"enviro_tools",
"setup_tools",
"semvar_parser_tools",
}

0 comments on commit 7cd674b

Please sign in to comment.