Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: allow using markdown and baseline reports #24

Merged
merged 2 commits into from
Aug 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions loadtests/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
report.*
baseline.json
14 changes: 8 additions & 6 deletions loadtests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,17 @@ edition = "2021"
anyhow = "1"
chrono = "0.4"
clap = { version = "4", features = ["derive", "env"] }
goose = "^0.17"
goose-eggs = "0.5.2"
goose = "=0.17.3-dev"
goose-eggs = "0.5.3-dev"
humantime = "2"
log = "0.4"
openid = "0.14"
reqwest = "0.12"
tokio = { version = "1.38.0", features = ["sync"] }

# goose still requires reqwest 0.11
[dependencies.reqwest_0_11]
version = "0.11.27"
package = "reqwest"
[patch.crates-io]
#goose = { path = "../../goose" }
#goose-eggs = { path = "../../goose-eggs" }

goose = { git = "https://github.com/ctron/goose", branch = "feature/baseline_1" }
goose-eggs = { git = "https://github.com/ctron/goose-eggs", branch = "feature/uptick_deps_1" }
2 changes: 1 addition & 1 deletion loadtests/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ async fn main() -> Result<(), GooseError> {
}

async fn setup_custom_client(user: &mut GooseUser) -> TransactionResult {
use reqwest_0_11::{header, Client};
use reqwest::{header, Client};

let issuer_url = std::env::var("ISSUER_URL").unwrap();
let client_id = std::env::var("CLIENT_ID").unwrap();
Expand Down