Skip to content
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
12 changes: 1 addition & 11 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion vdev/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ directories = "5.0.1"
# remove this when stabilized https://doc.rust-lang.org/stable/std/path/fn.absolute.html
dunce = "1.0.4"
glob = { version = "0.3.1", default-features = false }
hashlink = { version = "0.8.2", features = ["serde_impl"] }
hex = "0.4.3"
indexmap = { version = "1.9", default-features = false, features = ["serde"] }
indicatif = { version = "0.17.5", features = ["improved_unicode"] }
itertools = "0.10.5"
log = "0.4.18"
Expand Down
6 changes: 3 additions & 3 deletions vdev/src/testing/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use std::path::{Path, PathBuf};
use std::{env, fs};

use anyhow::{bail, Context, Result};
use hashlink::LinkedHashMap;
use indexmap::IndexMap;
use itertools::{self, Itertools};
use serde::{Deserialize, Serialize};
use serde_yaml::Value;
Expand Down Expand Up @@ -98,7 +98,7 @@ pub struct IntegrationTestConfig {
#[serde(default)]
pub env: Environment,
/// The matrix of environment configurations values.
matrix: LinkedHashMap<String, Vec<String>>,
matrix: IndexMap<String, Vec<String>>,
/// Configuration specific to the compose services.
#[serde(default)]
pub runner: IntegrationRunnerConfig,
Expand Down Expand Up @@ -140,7 +140,7 @@ impl IntegrationTestConfig {
Ok(config)
}

pub fn environments(&self) -> LinkedHashMap<String, Environment> {
pub fn environments(&self) -> IndexMap<String, Environment> {
self.matrix
.values()
.multi_cartesian_product()
Expand Down