Skip to content

Commit

Permalink
Clarify auto-caching in jcache execute
Browse files Browse the repository at this point in the history
fixes #23
  • Loading branch information
chrisjsewell committed Mar 12, 2020
1 parent 3553e0e commit 2c5397d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ Executing: ../tests/notebooks/basic_failing.ipynb
error: Execution Failed: ../tests/notebooks/basic_failing.ipynb
Executing: ../tests/notebooks/basic_unrun.ipynb
Execution Succeeded: ../tests/notebooks/basic_unrun.ipynb
Finished!
Finished! Successfully executed notebooks have been cached.
succeeded:
- ../tests/notebooks/basic.ipynb
- ../tests/notebooks/basic_unrun.ipynb
Expand Down
4 changes: 3 additions & 1 deletion jupyter_cache/cli/commands/cmd_exec.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,7 @@ def execute_nbs(cache_path, entry_point, pks):
logger.error(str(error))
return 1
result = executor.run_and_cache(filter_pks=pks or None)
click.secho("Finished!", fg="green")
click.secho(
"Finished! Successfully executed notebooks have been cached.", fg="green"
)
click.echo(yaml.safe_dump(result, sort_keys=False))

0 comments on commit 2c5397d

Please sign in to comment.