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 }}