From e9dc44f9d14942278d381c2ad1e5e914d5b4cf26 Mon Sep 17 00:00:00 2001 From: Ian Chamberlain Date: Sat, 30 Sep 2023 09:39:49 -0400 Subject: [PATCH] Rename references to rust3ds/test-runner --- README.md | 9 ++++----- test-runner/Cargo.toml | 3 --- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 2142dad..a403ca4 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,4 @@ -# test-runner-3ds - +# test-runner A set of tools for running automated Rust tests against Citra (3DS emulator). @@ -15,7 +14,7 @@ A set of tools for running automated Rust tests against Citra (3DS emulator). First the test runner to your crate: ```sh -cargo add --dev test-runner --git https://github.com/ian-h-chamberlain/test-runner-3ds +cargo add --dev test-runner --git https://github.com/rust3ds/test-runner ``` In `lib.rs` and any integration test files: @@ -43,13 +42,13 @@ jobs: uses: actions/checkout@v4 - name: Setup Rust3DS toolchain - uses: ian-h-chamberlain/test-runner-3ds/setup@v1 + uses: rust3ds/test-runner/setup@v1 with: # Optionally use a more specific nightly toolchain here if desired toolchain: nightly - name: Build and run tests - uses: ian-h-chamberlain/test-runner-3ds/run-tests@v1 + uses: rust3ds/test-runner/run-tests@v1 with: # Optionally add arguments to pass to `cargo 3ds test` args: '' diff --git a/test-runner/Cargo.toml b/test-runner/Cargo.toml index eddd1c3..4955033 100644 --- a/test-runner/Cargo.toml +++ b/test-runner/Cargo.toml @@ -13,9 +13,6 @@ ctru-rs = { git = "https://github.com/rust3ds/ctru-rs" } ctru-sys = { git = "https://github.com/rust3ds/ctru-rs" } libc = "0.2.147" -[patch."https://github.com/ian-h-chamberlain/test-runner-3ds"] -test-runner = { path = "." } - # Future-proofing for a rename + org move: [patch."https://github.com/rust3ds/test-runner"] test-runner = { path = "." }