Skip to content

Commit

Permalink
fix: disable install-from-sorce for beam sample
Browse files Browse the repository at this point in the history
Per #203.
  • Loading branch information
tseaver committed Dec 8, 2021
1 parent 1d23ace commit b2813cf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion samples/beam/noxfile.py
Expand Up @@ -94,7 +94,8 @@ def get_pytest_env_vars() -> Dict[str, str]:

TESTED_VERSIONS = sorted([v for v in ALL_VERSIONS if v not in IGNORED_VERSIONS])

INSTALL_LIBRARY_FROM_SOURCE = bool(os.environ.get("INSTALL_LIBRARY_FROM_SOURCE", False))
# todo(kolea2): temporary workaround to install pinned dep version
INSTALL_LIBRARY_FROM_SOURCE = False

# Error if a python version is missing
nox.options.error_on_missing_interpreters = True
Expand Down

0 comments on commit b2813cf

Please sign in to comment.