-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Some rough edges still exist: - Issues with running tests in parallel on GH Actions - Over reliance on magic delays rather than waiting on a condition - Are the assertions for segment archiving robust enough?
- Loading branch information
Showing
20 changed files
with
1,307 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
[package] | ||
name = "satori-integration-tests" | ||
license.workspace = true | ||
version.workspace = true | ||
edition.workspace = true | ||
|
||
[dev-dependencies] | ||
ctor.workspace = true | ||
indoc.workspace = true | ||
rumqttc.workspace = true | ||
satori-testing-utils.workspace = true | ||
tempfile.workspace = true | ||
tokio.workspace = true | ||
tracing.workspace = true | ||
tracing-subscriber.workspace = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#[ctor::ctor] | ||
fn init() { | ||
tracing_subscriber::fmt() | ||
.with_test_writer() | ||
.with_max_level(tracing::Level::DEBUG) | ||
.init(); | ||
} | ||
|
||
mod one; | ||
mod two; |
Oops, something went wrong.