We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ca99e3 commit b67c737Copy full SHA for b67c737
compiler/base/orchestrator/src/coordinator.rs
@@ -1775,8 +1775,15 @@ mod tests {
1775
}
1776
1777
async fn new_coordinator() -> Coordinator<impl Backend> {
1778
- Coordinator::new(TestBackend::new()).await
1779
- //Coordinator::new_docker().await
+ #[cfg(not(force_docker))]
+ {
1780
+ Coordinator::new(TestBackend::new()).await
1781
+ }
1782
+
1783
+ #[cfg(force_docker)]
1784
1785
+ Coordinator::new_docker().await
1786
1787
1788
1789
const ARBITRARY_EXECUTE_REQUEST: ExecuteRequest = ExecuteRequest {
0 commit comments