Skip to content

Commit 05bddbf

Browse files
committed
minor changes to noxfile and circle config
1 parent 503f6df commit 05bddbf

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.circleci/config.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ commands:
9898
key: -<< pipeline.parameters.cache_key_version >>-win-sys-{{ .Branch }}-<< parameters.py_version >>
9999
- run:
100100
name: Preparing environment - system
101+
no_output_timeout: 20m
101102
command: |
102103
choco install -y --no-progress miniconda3
103104
choco install -y --no-progress openssl openjdk11jre
@@ -167,7 +168,7 @@ jobs:
167168
py_version: << parameters.py_version >>
168169
- run:
169170
name: Testing Hydra
170-
no_output_timeout: 20m
171+
no_output_timeout: 10m
171172
command: |
172173
$env:NOX_PYTHON_VERSIONS="<< parameters.py_version >>"
173174
$env:ConEmuDefaultCp=65001

noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,13 +87,13 @@ def print_installed_package_version(session: Session, package_name: str) -> None
8787
pip_list: str = session.run("pip", "list", silent=True)
8888
for line in pip_list.split("\n"):
8989
if package_name in line:
90-
print(f"Installed {package_name} version: {line}")
90+
logger.info(f"Installed {package_name} version: {line}")
9191

9292

9393
def install_hydra(session: Session, cmd: List[str]) -> None:
9494
# needed for build
9595
session.install("read-version", silent=SILENT)
96-
# clean install hydra
96+
# clean-install hydra
9797
session.chdir(BASE)
9898
if USE_OMEGACONF_DEV_VERSION:
9999
session.install("--pre", "omegaconf", silent=SILENT)

0 commit comments

Comments
 (0)