remove tests

This commit is contained in:
Denis-Cosmin Nutiu 2024-02-25 18:38:04 +02:00
parent 160b178f2e
commit 81005c1aab
3 changed files with 0 additions and 31 deletions

View file

@ -17,20 +17,6 @@ jobs:
with:
command: check
test:
name: Run Test Suite
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: test
fmt:
name: Check Formatting
runs-on: ubuntu-latest

View file

@ -1,9 +0,0 @@
[package]
name = "no_std_test"
version = "0.1.0"
authors = ["marcelbuesing <buesing.marcel@googlemail.com>"]
edition = "2018"
[dependencies]
bme680 = { path = "../../"}
log = "0.4"

View file

@ -1,8 +0,0 @@
#![no_std]
use bme680::*;
use log::info;
pub fn test_no_std() {
info!("chipid {:?}", BME680_CHIP_ID);
}