-
Notifications
You must be signed in to change notification settings - Fork 110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implementation of checkpoints/temp targets #88 #106
base: develop
Are you sure you want to change the base?
Conversation
Squashed all the commits into one - in another branch
@@ -2,6 +2,7 @@ | |||
|
|||
* bugfix: [#98](https://github.com/Factual/drake/issues/98) --help now doesn't run workflow (thanks marshallshen) | |||
* Upgrade to c4 0.2.0, which no longer bundles the Facebook API | |||
* New feature: temp targets (https://github.com/Factual/drake/issues/88) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i guess we should standardize on what we're calling this. is it "temp targets" or "checkpointing"?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good point - "temp targets" sounds good to me.
#106 Standardize on name "temp targets" Use -> for cleaner code Add comments for ramifications of error when deleting temp target Also: made sure temp target testing is in the regtest suite
Checked in code review fixes - all tests pass. |
[file] | ||
(fs di/data-in? file)) | ||
|
||
(defn- no-data-in? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(def no-data-in? (complement data-in?))
?
The code LGTM. But I think we should update the doc (pre-emptively) before releasing - I would love to see how this feature looks like from the end user's perspective. Ideally the documentation is easy to understand and covers edge cases as well. :) |
#106 Standardize on name "temp targets" Use -> for cleaner code Add comments for ramifications of error when deleting temp target Also: made sure temp target testing is in the regtest suite Conflicts: resources/regtest/run-all.sh src/drake/core.clj
Squashed all the commits into one - in another branch
Ready for review.