Skip to content

Commit

Permalink
SocialPulse: Setup automated testing with gh actions
Browse files Browse the repository at this point in the history
Change-Id: I273040afaa35d92eaa4e28d176602bda1d068474
  • Loading branch information
resist15 committed Aug 12, 2024
1 parent 2139d8a commit 782ccd7
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 1 deletion.
46 changes: 46 additions & 0 deletions .github/workflows/workflows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Build and Test Code

on: [push, pull_request]

jobs:
build:
env:
DATABASE_HOSTNAME: ${{secrets.DATABASE_HOSTNAME}}
DATABASE_PORT: ${{secrets.DATABASE_PORT}}
DATABASE_PASSWORD: ${{secrets.DATABASE_PASSWORD}}
DATABASE_NAME: ${{secrets.DATABASE_NAME}}
DATABASE_USERNAME: ${{secrets.DATABASE_USERNAME}}
SECRET_KEY: ${{secrets.SECRET_KEY}}
ALGORITHM: ${{secrets.ALGORITHM}}
ACCESS_TOKEN_EXPIRE_MINUTES: ${{secrets.ACCESS_TOKEN_EXPIRE_MINUTES}}

services:
postgres:
image: postgres
env:
POSTGRES_PASSWORD: ${{secrets.DATABASE_PASSWORD}}
POSTGRES_DB: ${{secrets.DATABASE_NAME}}_test
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
runs-on: ubuntu-latest
steps:
- name: Fetch Github Repository
uses: actions/checkout@v2
- name: Installing Python 3.12
uses: actions/setup-python@v2
with:
python-version: "3.12"
- name: Updating Pip to latest version
run: python -m pip install --upgrade pip
- name: Installing Dependencies
run: pip install -r requirements.txt
- name: Init Testing
run: |
pip install pytest
pytest
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def override_get_db():

@pytest.fixture
def test_user2(client):
user_data = {"email": "sourav@gmail.com",
user_data = {"email": "sourav123@gmail.com",
"password": "password123"}
res = client.post("/users/", json=user_data)

Expand Down

0 comments on commit 782ccd7

Please sign in to comment.