From e9259b70e108fae9398f4c437b3188c700f8b979 Mon Sep 17 00:00:00 2001 From: SohamGundewar Date: Thu, 31 Oct 2024 22:47:57 -0400 Subject: [PATCH] separating workflow --- .github/workflows/test-app.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/test-app.yml b/.github/workflows/test-app.yml index 850cc28..b2aa9d7 100644 --- a/.github/workflows/test-app.yml +++ b/.github/workflows/test-app.yml @@ -40,13 +40,12 @@ jobs: python -m pip install --upgrade pip pip install flake8 pytest # Include flake8 for linting and pytest if needed if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - pip install coverage codecov - name: Create config.ini from secret env: CONFIG_INI: ${{ secrets.CONFIG_INI }} run: | - # echo "$CONFIG_INI" > tests/config.ini + echo "$CONFIG_INI" > tests/config.ini - name: Run Unit Tests with unittest run: |