You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix inclusion of service-as-oracle tests in linera-chain (#3583)
## Motivation
On `main`, running `cargo test -p linera-chain` fails to compile. That
happens because some tests assume that the
`linera-execution/unstable-oracles` feature flag was always enabled. CI
failed to catch this because all tests are currently being executing
with that feature enabled.
## Proposal
Only include those tests if a new `linera-chain/unstable-oracles`
feature is enabled, which is enabled if `linera-core/unstable-oracles`
is enabled.
## Test Plan
Ran `cargo test -p linera-chain` and `cargo test -p linera-chain
--features unstable-oracles` manually.
CI was not updated because the current plan is to remove
`unstable-oracles` in the next few days (#3524).
## Release Plan
- Nothing to do, because this only affects tests.
## Links
- [reviewer
checklist](https://github.com/linera-io/linera-protocol/blob/main/CONTRIBUTING.md#reviewer-checklist)
0 commit comments