Browse Source

Rename references to rust3ds/test-runner

pull/13/head
Ian Chamberlain 8 months ago
parent
commit
e9dc44f9d1
No known key found for this signature in database
GPG Key ID: AE5484D09405AA60
  1. 9
      README.md
  2. 3
      test-runner/Cargo.toml

9
README.md

@ -1,5 +1,4 @@ @@ -1,5 +1,4 @@
# test-runner-3ds
<!-- TODO: better name! -->
# 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). @@ -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: @@ -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: ''

3
test-runner/Cargo.toml

@ -13,9 +13,6 @@ ctru-rs = { git = "https://github.com/rust3ds/ctru-rs" } @@ -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 = "." }

Loading…
Cancel
Save