From 382e2daa98bce75db6d6ae367666e6b751ed6e81 Mon Sep 17 00:00:00 2001 From: Abbas Toof Date: Mon, 17 Jun 2024 13:50:02 +0300 Subject: [PATCH] The test service in CI has been commented out. --- .github/workflows/ci.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 965c086..4fc6443 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,16 +41,16 @@ jobs: - name: Install dependencies run: pip install -r requirements.txt # Install dependencies from requirements.txt - test: - needs: setup - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v4 +# test: +# needs: setup +# runs-on: ubuntu-latest +# steps: +# - name: Checkout code +# uses: actions/checkout@v4 - # Run test suite - - name: Run tests - run: pytest # Execute tests using pytest +# # Run test suite +# - name: Run tests +# run: pytest # Execute tests using pytest security: needs: setup @@ -66,7 +66,7 @@ jobs: bandit -r . # Run Bandit on the codebase build: - needs: [setup, test, security] + needs: [setup, security] runs-on: ubuntu-latest steps: - name: Checkout code