Compare commits

..

2 commits

Author SHA1 Message Date
5f70e66039 build: update dogfood version from mirror to 1.1.0
All checks were successful
Test / checks (map[name:stable]) (push) Successful in 1m32s
Test / checks (map[name:nightly]) (push) Successful in 4m41s
2024-11-15 17:52:20 +00:00
Renovate Bot
76636326c3 fix(deps): update rust crate kxio to v2
All checks were successful
Test / checks (map[name:stable]) (push) Successful in 1m35s
Test / checks (map[name:nightly]) (push) Successful in 4m35s
2024-11-15 17:52:20 +00:00
3 changed files with 0 additions and 13 deletions

View file

@ -5,15 +5,6 @@ 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,7 +18,6 @@ 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,11 +1,8 @@
//
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<()> */