-
Notifications
You must be signed in to change notification settings - Fork 29
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
Add list of services to enable (ECR-1766) & bundle btc-anchoring (ECR-1366) #338
Changes from 1 commit
7a03275
2017463
0a5cbe2
ee5d386
b7972b3
f1d1410
12ba83d
7c1e73d
c0e0ccc
da8f28d
d7137e3
99554b9
112bf35
ac14ae6
d96d178
de86ec1
6ac9526
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -118,9 +118,6 @@ mod tests { | |
fn broken_config() { | ||
let cfg = create_config("broken.toml", "not_list = 1"); | ||
let services_to_enable = services_to_enable(cfg); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Unused variable seems to break clippy (shall it be prefixed with an underscore?). |
||
assert_eq!(services_to_enable.len(), 2); | ||
assert!(services_to_enable.contains(EJB_SERVICE)); | ||
assert!(services_to_enable.contains(CONFIGURATION_SERVICE)); | ||
} | ||
|
||
#[test] | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
#!/usr/bin/env bash | ||
# Runs EJB App tests (ejb-core/rust/ejb-app). | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why don't we call Edit: I see, we do call from run_all_tests. Does it belong there or in native_its? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think it's just separated tests, not native_its |
||
# If --skip-compile is passed, does not recompile all Java sources. | ||
# | ||
# ¡Keep it MacOS/Ubuntu compatible! | ||
|
||
|
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.
Shan't we throw in this case?
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.
Hmmm... No, be just use default config... I'll consider panicing