Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions crates/terraphim_multi_agent/tests/simple_agent_test.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
use terraphim_multi_agent::{
agent::AgentStatus, test_utils::*, CommandInput, CommandType, TerraphimAgent,
};
use terraphim_multi_agent::{agent::AgentStatus, test_utils::*, CommandInput, CommandType};

#[tokio::test]
async fn test_agent_creation_simple() {
Expand Down
2 changes: 1 addition & 1 deletion crates/terraphim_workspace/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ impl WorkspaceManager {
tracing::debug!(hook = hook_name, cwd = %cwd.display(), "running hook");

let mut cmd = Command::new("sh");
cmd.arg("-lc")
cmd.arg("-c")
.arg(script)
.current_dir(cwd)
.stdout(std::process::Stdio::piped())
Expand Down
2 changes: 1 addition & 1 deletion scripts/ci-check-format.sh
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ fi
# - useless_vec, items_after_test_module, module_inception: test organization
# - bool_comparison, nonminimal_bool: test boolean expressions
# - redundant_clone: performance not critical in tests
if timeout 1200 cargo clippy --workspace --all-targets --message-format=short -- \
if timeout 1200 cargo clippy --workspace --all-targets --features zlob --message-format=short -- \
-D clippy::all \
-A clippy::nursery -A clippy::pedantic \
-A dead_code -A unused \
Expand Down
Loading