Skip to content

Commit

Permalink
ngr: Fix Rust/Cargo
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Oct 30, 2023
1 parent 80884b5 commit 92411d0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pueblo/ngr/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -352,12 +352,12 @@ def peek(self) -> None:

def install(self) -> None:
"""
Install dependencies of PHP Composer package.
Invoke `cargo build`.
"""
run_command("cargo build")

def test(self) -> None:
"""
Invoke a script called `test`, defined in `composer.json`.
Invoke `cargo test`.
"""
run_command("cargo run")
run_command("cargo test")

0 comments on commit 92411d0

Please sign in to comment.