From 6028b984837785b132dfd62eeff2eb87d8eb9ad0 Mon Sep 17 00:00:00 2001 From: amtoine Date: Tue, 4 Apr 2023 18:44:37 +0200 Subject: [PATCH] remove the tests This reverts commits: - e3e2a077be134d15b8e24d5c463c793b9ecf4db6 - 6404d0e2c4e8bb69d4824abe75786d579847a8d1 - ad3e8de25b33afb99de32da541447e0ca6c310a1 - 507f4bda44f0fb5afa10c141187d2e9007b91d1a --- .github/workflows/ci.yml | 3 --- crates/nu-utils/standard_library/test_std.nu | 12 ------------ 2 files changed, 15 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fa3d179b2f..d246f3ddc2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -115,9 +115,6 @@ jobs: # as part of #8525. run: cargo install --path . --locked --no-default-features - - name: System dependencies - run: sudo apt install -y xclip - - name: Standard library tests run: nu crates/nu-utils/standard_library/tests.nu diff --git a/crates/nu-utils/standard_library/test_std.nu b/crates/nu-utils/standard_library/test_std.nu index ec7d1761f6..f458f1cdb6 100644 --- a/crates/nu-utils/standard_library/test_std.nu +++ b/crates/nu-utils/standard_library/test_std.nu @@ -22,15 +22,3 @@ export def test_path_add [] { assert equal $env.PATH ["fooooo", "foo", "bar", "baz"] } } - -export def test_clip_simple_string [] { - use std.nu clip - - "foo" | clip --silent --no-notify -} - -export def test_clip_structured_data [] { - use std.nu clip - - open Cargo.toml | get package | clip --silent --no-notify -}