Skip to content

Commit

Permalink
Merge branch 'specify-package-metadata-for-test-framework'
Browse files Browse the repository at this point in the history
  • Loading branch information
faern committed Jan 11, 2024
2 parents 27ed9a2 + 64ea643 commit 2f05885
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 8 deletions.
2 changes: 1 addition & 1 deletion test/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 = [
Expand Down
6 changes: 5 additions & 1 deletion test/test-manager/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
10 changes: 7 additions & 3 deletions test/test-manager/test_macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
6 changes: 4 additions & 2 deletions test/test-rpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 5 additions & 1 deletion test/test-runner/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 2f05885

Please sign in to comment.