Update requirements to allow latest OVOS packages #132
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will run unit tests | |
name: Run Unit Tests | |
on: | |
workflow_dispatch: | |
pull_request: | |
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 | |
with: | |
platforms: linux/amd64,linux/arm64 | |
unit_tests: | |
timeout-minutes: 15 | |
strategy: | |
matrix: | |
python-version: [3.8, 3.9, '3.10'] | |
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: | | |
sudo apt update | |
sudo apt install -y gcc libfann-dev swig libssl-dev portaudio19-dev git libpulse-dev | |
python -m pip install --upgrade pip | |
pip install -r requirements/requirements.txt | |
pip install -r requirements/test_requirements.txt | |
- name: Test Utils | |
run: | | |
pytest tests/util_tests.py --doctest-modules --junitxml=tests/util-test-results.xml | |
- name: Upload utils test results | |
uses: actions/upload-artifact@v4 | |
with: | |
name: util-test-results-${{ matrix.python-version }} | |
path: tests/util-test-results.xml | |
- name: Test Service | |
run: | | |
pytest tests/test_gui_service.py --doctest-modules --junitxml=tests/gui-service-test-results.xml | |
- name: Upload GUI Service test results | |
uses: actions/upload-artifact@v4 | |
with: | |
name: gui-service-test-results-${{ matrix.python-version }} | |
path: tests/gui-service-test-results.xml |