From b1f0b74c064fc65d6f980ed77803bf925e323ff3 Mon Sep 17 00:00:00 2001 From: FredMagas Date: Thu, 8 Aug 2024 16:30:36 -0300 Subject: [PATCH] Remove test database connection from the main.yml --- .github/workflows/main.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1dcc2d6..34731d4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -24,13 +24,6 @@ jobs: source venv/bin/activate pip install -r requirements.txt - - name: Test database connection - env: - DATABASE_URL: ${{ secrets.DATABASE_URL }} - run: | - source venv/bin/activate - python test_db_connection.py - - name: Make retry.sh executable run: chmod +x retry.sh