Skip to content

Commit

Permalink
Merge pull request #160 from firstbatchxyz/erhant/update-workflows-o1
Browse files Browse the repository at this point in the history
Update workflows o1
  • Loading branch information
erhant authored Dec 18, 2024
2 parents c888180 + 3df4dc4 commit 2b453cb
Show file tree
Hide file tree
Showing 6 changed files with 159 additions and 45 deletions.
78 changes: 39 additions & 39 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ default-members = ["compute"]

[workspace.package]
edition = "2021"
version = "0.2.30"
version = "0.2.31"
license = "Apache-2.0"
readme = "README.md"

Expand Down
9 changes: 6 additions & 3 deletions compute/src/node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -471,13 +471,16 @@ impl DriaComputeNode {
#[cfg(test)]
mod tests {
use super::*;
use std::env;

#[tokio::test]
#[ignore = "run this manually"]
async fn test_publish_message() -> eyre::Result<()> {
env::set_var("RUST_LOG", "none,dkn_compute=debug,dkn_p2p=debug");
let _ = env_logger::builder().is_test(true).try_init();
let _ = env_logger::builder()
.filter_level(log::LevelFilter::Off)
.filter_module("dkn_compute", log::LevelFilter::Debug)
.filter_module("dkn_p2p", log::LevelFilter::Debug)
.is_test(true)
.try_init();

// create node
let cancellation = CancellationToken::new();
Expand Down
Loading

0 comments on commit 2b453cb

Please sign in to comment.