From ec35a40bcdb7d6f8a9032b3ebc5c95eaa55585ee Mon Sep 17 00:00:00 2001 From: Thomas Burton Date: Mon, 16 Oct 2023 12:12:09 +0100 Subject: [PATCH] chore: remove unit tests for preinst --- .github/workflows/_10_test.yml | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/.github/workflows/_10_test.yml b/.github/workflows/_10_test.yml index 0f9c9721ad..d00336c3f1 100644 --- a/.github/workflows/_10_test.yml +++ b/.github/workflows/_10_test.yml @@ -59,25 +59,3 @@ jobs: token: ${{ secrets.CF_BACKEND_CODECOV_TOKEN }} # not required for public repos files: lcov.info fail_ci_if_error: false - - test-preinst-scripts: - runs-on: ubuntu-latest - strategy: - matrix: - tests_path: - - state-chain/node/package/preinst-tests - - engine/package/preinst-tests - steps: - - name: Checkout ๐Ÿ - uses: actions/checkout@v3 - - - name: Install bats ๐Ÿฆ‡ - run: | - sudo apt-get update - sudo apt-get install -y bats - - - name: Test ๐Ÿงช - shell: bash - run: | - bats tests/test_preinst.bats - working-directory: ${{ matrix.tests_path }}