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 = "." }