Skip to content

Commit

Permalink
minor changes to noxfile and circle config
Browse files Browse the repository at this point in the history
  • Loading branch information
omry committed Jun 4, 2024
1 parent 503f6df commit 05bddbf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ commands:
key: -<< pipeline.parameters.cache_key_version >>-win-sys-{{ .Branch }}-<< parameters.py_version >>
- run:
name: Preparing environment - system
no_output_timeout: 20m
command: |
choco install -y --no-progress miniconda3
choco install -y --no-progress openssl openjdk11jre
Expand Down Expand Up @@ -167,7 +168,7 @@ jobs:
py_version: << parameters.py_version >>
- run:
name: Testing Hydra
no_output_timeout: 20m
no_output_timeout: 10m
command: |
$env:NOX_PYTHON_VERSIONS="<< parameters.py_version >>"
$env:ConEmuDefaultCp=65001
Expand Down
4 changes: 2 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,13 +87,13 @@ def print_installed_package_version(session: Session, package_name: str) -> None
pip_list: str = session.run("pip", "list", silent=True)
for line in pip_list.split("\n"):
if package_name in line:
print(f"Installed {package_name} version: {line}")
logger.info(f"Installed {package_name} version: {line}")


def install_hydra(session: Session, cmd: List[str]) -> None:
# needed for build
session.install("read-version", silent=SILENT)
# clean install hydra
# clean-install hydra
session.chdir(BASE)
if USE_OMEGACONF_DEV_VERSION:
session.install("--pre", "omegaconf", silent=SILENT)
Expand Down

0 comments on commit 05bddbf

Please sign in to comment.