Skip to content

+ integration tests for 5 assignment and little fix for utils #10

+ integration tests for 5 assignment and little fix for utils

+ integration tests for 5 assignment and little fix for utils #10

Workflow file for this run

name: Run Tests on Ubuntu 22.04
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.11.6"
- name: Install dependencies
run: pip install -r requirements.txt
- name: Set PYTHONPATH
run: export PYTHONPATH="${PYTHONPATH}:${{ github.workspace }}/functions/funcs"
- name: Start Uvicorn server
run: uvicorn algo:app &
- name: Run end-to-end tests
run: python tests/e2e/e2e_tests.py
- name: Run integration tests
run: python -m tests.integration.assignment4