From 9e20e9fe733c90050d236dfb95e6652b3dae593d Mon Sep 17 00:00:00 2001 From: KunalSontakke <109586434+KunalSontakke@users.noreply.github.com> Date: Fri, 6 Sep 2024 16:17:22 +0530 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 34 ++++++++++++++++++---------------- 1 file changed, 18 insertions(+), 16 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 04dd2fd..0e0c431 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -2,29 +2,31 @@ name: JazzX on: push: - branches: - - master + branches: + - master permissions: contents: read jobs: build: - runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - name: Set up Python 3.10 - uses: actions/setup-python@v3 - with: - python-version: "3.10" - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install flake8 pytest - if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + - uses: actions/checkout@v4 + + - name: Set up Python 3.10 + uses: actions/setup-python@v3 + with: + python-version: "3.10" + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install flake8 pytest requests jinja2 + if [ -f Requirements/requirements.txt ]; then pip install -r Requirements/requirements.txt; fi + + - name: Test with pytest + run: pytest API_Requests/Tests -v -s --log-cli-level=INFO + - - - name: Test with pytest - run: pytest API_Requests/Tests -v -s -rA