From 81005c1aab70740935e4b128742b90959d5ff7e3 Mon Sep 17 00:00:00 2001 From: Denis Nutiu Date: Sun, 25 Feb 2024 18:38:04 +0200 Subject: [PATCH] remove tests --- .github/workflows/ci.yml | 14 -------------- ci/no_std_test/Cargo.toml | 9 --------- ci/no_std_test/src/lib.rs | 8 -------- 3 files changed, 31 deletions(-) delete mode 100644 ci/no_std_test/Cargo.toml delete mode 100644 ci/no_std_test/src/lib.rs diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c53a03f..3ba373e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 diff --git a/ci/no_std_test/Cargo.toml b/ci/no_std_test/Cargo.toml deleted file mode 100644 index 4fe4c66..0000000 --- a/ci/no_std_test/Cargo.toml +++ /dev/null @@ -1,9 +0,0 @@ -[package] -name = "no_std_test" -version = "0.1.0" -authors = ["marcelbuesing "] -edition = "2018" - -[dependencies] -bme680 = { path = "../../"} -log = "0.4" diff --git a/ci/no_std_test/src/lib.rs b/ci/no_std_test/src/lib.rs deleted file mode 100644 index ebb5111..0000000 --- a/ci/no_std_test/src/lib.rs +++ /dev/null @@ -1,8 +0,0 @@ -#![no_std] - -use bme680::*; -use log::info; - -pub fn test_no_std() { - info!("chipid {:?}", BME680_CHIP_ID); -} \ No newline at end of file