diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2024-01-11 16:05:37 +0100 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2024-01-11 16:05:37 +0100 |
| commit | 2f05885b58dadfe89bf9b683f1be65bb9f704f01 (patch) | |
| tree | 89edf97016dc32619481b810396f9da83528bdaf | |
| parent | 27ed9a273d106fcd75da855bfade7d04812dd042 (diff) | |
| parent | 64ea643b17b3929f94f85e74acc9ce0bbeb8f3df (diff) | |
| download | mullvadvpn-2f05885b58dadfe89bf9b683f1be65bb9f704f01.tar.xz mullvadvpn-2f05885b58dadfe89bf9b683f1be65bb9f704f01.zip | |
Merge branch 'specify-package-metadata-for-test-framework'
| -rw-r--r-- | test/Cargo.lock | 2 | ||||
| -rw-r--r-- | test/Cargo.toml | 6 | ||||
| -rw-r--r-- | test/test-manager/Cargo.toml | 6 | ||||
| -rw-r--r-- | test/test-manager/test_macro/Cargo.toml | 10 | ||||
| -rw-r--r-- | test/test-rpc/Cargo.toml | 6 | ||||
| -rw-r--r-- | test/test-runner/Cargo.toml | 6 |
6 files changed, 28 insertions, 8 deletions
diff --git a/test/Cargo.lock b/test/Cargo.lock index 484b256cac..b14bc30ca1 100644 --- a/test/Cargo.lock +++ b/test/Cargo.lock @@ -3156,7 +3156,7 @@ dependencies = [ [[package]] name = "test-rpc" -version = "0.1.0" +version = "0.0.0" dependencies = [ "async-trait", "bytes", diff --git a/test/Cargo.toml b/test/Cargo.toml index 3f8e2d056e..f0fcf85123 100644 --- a/test/Cargo.toml +++ b/test/Cargo.toml @@ -1,3 +1,9 @@ +[workspace.package] +authors = ["Mullvad VPN"] +repository = "https://github.com/mullvad/mullvadvpn-app/" +license = "GPL-3.0" +edition = "2021" + [workspace] resolver = "2" members = [ diff --git a/test/test-manager/Cargo.toml b/test/test-manager/Cargo.toml index ffba39bae0..fafad46174 100644 --- a/test/test-manager/Cargo.toml +++ b/test/test-manager/Cargo.toml @@ -1,6 +1,10 @@ [package] name = "test-manager" -edition = "2021" +description = "Manager process orchestrating e2e tests of the Mullvad VPN app" +authors.workspace = true +repository.workspace = true +license.workspace = true +edition.workspace = true [lints] workspace = true diff --git a/test/test-manager/test_macro/Cargo.toml b/test/test-manager/test_macro/Cargo.toml index 4942a8af48..b38af3c785 100644 --- a/test/test-manager/test_macro/Cargo.toml +++ b/test/test-manager/test_macro/Cargo.toml @@ -1,9 +1,13 @@ +[package] +name = "test_macro" +authors.workspace = true +repository.workspace = true +license.workspace = true +edition.workspace = true + [lib] proc-macro = true -[package] -name = "test_macro" -edition = "2021" [dependencies] syn = "1.0" diff --git a/test/test-rpc/Cargo.toml b/test/test-rpc/Cargo.toml index 9599585942..14cd2b4cca 100644 --- a/test/test-rpc/Cargo.toml +++ b/test/test-rpc/Cargo.toml @@ -1,8 +1,10 @@ [package] name = "test-rpc" -version = "0.1.0" -edition = "2021" description = "Supports IPC between test-runner and test-manager" +authors.workspace = true +repository.workspace = true +license.workspace = true +edition.workspace = true [lints] workspace = true diff --git a/test/test-runner/Cargo.toml b/test/test-runner/Cargo.toml index cb92a35513..ab8c65fdf0 100644 --- a/test/test-runner/Cargo.toml +++ b/test/test-runner/Cargo.toml @@ -1,6 +1,10 @@ [package] name = "test-runner" -edition = "2021" +description = "Runs inside the VM where the Mullvad VPN app is being tested" +authors.workspace = true +repository.workspace = true +license.workspace = true +edition.workspace = true [lints] workspace = true |
