From 08cbffb258142a279d715832fc64353ea168d421 Mon Sep 17 00:00:00 2001 From: Nikolay Ulmasov Date: Thu, 12 Jan 2023 18:22:10 +0000 Subject: [PATCH] add github icons --- .github/workflows/main.yml | 14 +++++++------- README.md | 3 +++ tests/client.rs | 4 ++-- 3 files changed, 12 insertions(+), 9 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b81318e..c06451b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -52,14 +52,14 @@ jobs: include: - name: linux / stable - test-features: "--features __internal_proxy_sys_no_cache" + features: "--features blocking" - - name: macOS / stable - os: macOS-latest - test-features: "--features __internal_proxy_sys_no_cache" + # - name: feature / blocking + # features: "--features blocking" - - name: feature / blocking - features: "--features blocking" + # - name: macOS / stable + # os: macOS-latest + # test-features: "--features __internal_proxy_sys_no_cache" steps: - name: Checkout @@ -75,4 +75,4 @@ jobs: run: cargo build ${{ matrix.features }} - name: Test - run: cargo test ${{ matrix.features }} ${{ matrix.test-features }} -- --test-threads=1 + run: cargo test ${{ matrix.features }} -- --test-threads=1 diff --git a/README.md b/README.md index cdc0704..e1f4696 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,6 @@ +![experimental](https://github.com/GIScience/badges/raw/master/status/experimental.svg) +[![main](https://github.com/r3stl355/delta-sharing-rust-client/actions/workflows/main.yml/badge.svg?branch=main)](https://github.com/r3stl355/delta-sharing-rust-client/actions/workflows/main.yml) + # Delta Sharing client library for Rust This is a simple library for Rust to access data published via Delta Sharing. Has an async (`delta-sharing::application::Application`) version, and also a blocking (`delta-sharing::blocking::Application`) version for smaller operations, both exposing similar APIs. diff --git a/tests/client.rs b/tests/client.rs index 029cabf..0e81e3e 100644 --- a/tests/client.rs +++ b/tests/client.rs @@ -4,7 +4,7 @@ use common::create_mocked_test_app; use delta_sharing::protocol::*; use wiremock::matchers::method; -#[cfg(not(feature = "blocking"))] +// #[cfg(not(feature = "blocking"))] #[tokio::test] async fn list_shares() { let body = @@ -21,7 +21,7 @@ async fn list_shares() { ); } -#[cfg(not(feature = "blocking"))] +// #[cfg(not(feature = "blocking"))] #[tokio::test] async fn list_schemas() { let share_name = "share_1";