Skip to content

Refactor imports to troubleshoot circular import exception noted in h… #37

Refactor imports to troubleshoot circular import exception noted in h…

Refactor imports to troubleshoot circular import exception noted in h… #37

Workflow file for this run

# This workflow will run unit tests
name: Run Unit Tests
on:
push:
workflow_dispatch:
pull_request:
branches:
- master
jobs:
py_build_tests:
uses: neongeckocom/.github/.github/workflows/python_build_tests.yml@master
with:
python_version: "3.8"
docker_build_tests:
uses: neongeckocom/.github/.github/workflows/docker_build_tests.yml@master
unit_tests:
strategy:
matrix:
python-version: [3.8, 3.9, '3.10', '3.11', '3.12']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[test,mongodb]
- name: Unit Tests
run: |
pytest tests --doctest-modules --junitxml=tests/unit-test-results.xml
env:
MONGO_TEST_CONFIG: ${{secrets.MONGO_TEST_CONFIG}}
- name: Upload test results
uses: actions/upload-artifact@v4
with:
name: unit-test-results-${{matrix.python-version}}
path: tests/unit-test-results.xml