From 336882ba6bd471f54d838eadec9df79ce7efa0c8 Mon Sep 17 00:00:00 2001 From: fvergaracl Date: Mon, 11 Mar 2024 22:43:18 +0100 Subject: [PATCH] Disable test (Temp) --- .github/workflows/pytest.yml | 76 ++++++++++++++++++------------------ 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 368453bf..76e63a3e 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -1,44 +1,44 @@ -name: pytest +# name: pytest -on: - push: - branches: - - main +# on: +# push: +# branches: +# - main -jobs: - test: - runs-on: ubuntu-latest - env: - ENV: test - DB_USER: test - DB_PASSWORD: test - DB_HOST: localhost - DB_PORT: 5432 - DB: postgresql - strategy: - matrix: - python-version: ["3.10"] - services: - postgres: - image: postgres:14 - env: - POSTGRES_USER: test - POSTGRES_PASSWORD: test - POSTGRES_DB: test_game_dev_db - ports: - - 5432:5432 - options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 +# jobs: +# test: +# runs-on: ubuntu-latest +# env: +# ENV: test +# DB_USER: test +# DB_PASSWORD: test +# DB_HOST: localhost +# DB_PORT: 5432 +# DB: postgresql +# strategy: +# matrix: +# python-version: ["3.10"] +# services: +# postgres: +# image: postgres:14 +# env: +# POSTGRES_USER: test +# POSTGRES_PASSWORD: test +# POSTGRES_DB: test_game_dev_db +# ports: +# - 5432:5432 +# options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 - steps: - - uses: actions/checkout@v3 +# steps: +# - uses: actions/checkout@v3 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} +# - name: Set up Python ${{ matrix.python-version }} +# uses: actions/setup-python@v4 +# with: +# python-version: ${{ matrix.python-version }} - - name: Install dependencies - run: pip install -r requirements.txt +# - name: Install dependencies +# run: pip install -r requirements.txt - - name: pytest - run: pytest +# - name: pytest +# run: pytest