Skip to content

Implement API Endpoint for Reading Single Catalogue Category #23

Implement API Endpoint for Reading Single Catalogue Category

Implement API Endpoint for Reading Single Catalogue Category #23

Workflow file for this run

name: CI
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
- develop
permissions:
contents: read
jobs:
linting:
name: Linting
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
- name: Set up Python
uses: actions/setup-python@bd6b4b6205c4dbad673328db7b31b7fab9e241c0 # v4.6.1
with:
python-version: "3.10"
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .[code-analysis]
- name: Run pylint
run: pylint inventory_management_system_api test
unit-tests:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
- name: Set up Python
uses: actions/setup-python@bd6b4b6205c4dbad673328db7b31b7fab9e241c0 # v4.6.1
with:
python-version: "3.10"
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .[test]
- name: Create environment file
run: cp inventory_management_system_api/.env.example inventory_management_system_api/.env
- name: Create logging configuration file
run: cp inventory_management_system_api/logging.example.ini inventory_management_system_api/logging.ini
- name: Run unit tests
run: pytest test/unit/ --cov
e2e-tests:
needs: [unit-tests]
name: End-to-End Tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
- name: Start MongoDB
uses: supercharge/mongodb-github-action@d26215f71b2ce60420a2a3776a25893d11a65f85 #v1.9.0
with:
mongodb-version: "6.0"
mongodb-username: root
mongodb-password: example
mongodb-db: test-ims
- name: Set up Python
uses: actions/setup-python@bd6b4b6205c4dbad673328db7b31b7fab9e241c0 # v4.6.1
with:
python-version: "3.10"
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .[test]
- name: Create environment file
run: cp inventory_management_system_api/.env.example inventory_management_system_api/.env
- name: Create logging configuration file
run: cp inventory_management_system_api/logging.example.ini inventory_management_system_api/logging.ini
- name: Run e2e tests
run: DATABASE__NAME="test-ims" pytest test/e2e/ --cov