Skip to content

Commit

Permalink
The test service in CI has been commented out.
Browse files Browse the repository at this point in the history
  • Loading branch information
Abbas Toof committed Jun 17, 2024
1 parent 04906dc commit 382e2da
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 382e2da

Please sign in to comment.