Skip to content

Commit

Permalink
add github icons
Browse files Browse the repository at this point in the history
  • Loading branch information
r3stl355 committed Jan 12, 2023
1 parent d2c6e67 commit 08cbffb
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions tests/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 =
Expand All @@ -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";
Expand Down

0 comments on commit 08cbffb

Please sign in to comment.