Compare commits

..

2 commits

Author SHA1 Message Date
3b62feb476 build: update dogfood version from mirror to 1.1.0 2024-11-15 17:40:55 +00:00
Renovate Bot
23e3e29e56 fix(deps): update rust crate kxio to v2
Some checks failed
Test / checks (map[name:nightly]) (push) Failing after 25s
Test / checks (map[name:stable]) (push) Failing after 1m27s
2024-11-15 17:13:44 +00:00
3 changed files with 13 additions and 0 deletions

View file

@ -5,6 +5,15 @@ use std::collections::HashSet;
use crate::tests::a_config;
//
use super::*;
use anyhow::Result;
use kxio::network::StatusCode;
use std::collections::HashSet;
use crate::tests::a_config;
use kxio::net::{Method, Net, Url};
#[tokio::test]

View file

@ -18,6 +18,7 @@ mod tests;
#[tokio::main]
#[cfg(not(tarpaulin_include))]
async fn main() -> std::result::Result<(), Box<dyn std::error::Error>> {
Ok(run(&StandardPrinter, Network::new_real()).await?)
let github_workspace = std::env::var("GITHUB_WORKSPACE").context("GITHUB_WORKSPACE")?;
let fs = kxio::fs::new(github_workspace);

View file

@ -1,8 +1,11 @@
//
use super::*;
use anyhow::Result;
use pretty_assertions::assert_eq;
use kxio::net::{Method, Net, Url};
use printer::TestPrinter;
use url::Url;
#[tokio::test]
async fn run_with_some_invalids() /* -> Result<()> */