-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (31 loc) · 989 Bytes
/
unit_tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# This workflow will run unit tests
name: Run Unit Tests
on:
pull_request:
workflow_dispatch:
jobs:
py_build_tests:
uses: neongeckocom/.github/.github/workflows/python_build_tests.yml@master
unit_tests:
strategy:
matrix:
python-version: [ 3.9, '3.10', '3.11', '3.12' ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[test,sql,sftp]
- name: Test Units
run: |
pytest tests --doctest-modules --junitxml=tests/unit-test-results.xml
- name: Upload test results
uses: actions/upload-artifact@v4
with:
name: unit-test-results-${{ matrix.python-version }}
path: tests/unit-test-results.xml