diff --git a/.github/workflows/workflows.yml b/.github/workflows/workflows.yml new file mode 100644 index 0000000..f05e23e --- /dev/null +++ b/.github/workflows/workflows.yml @@ -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 diff --git a/tests/conftest.py b/tests/conftest.py index 98ef125..51052cf 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -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)