move src/dailyai/tests to tests #19
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
name: test | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- "**" | |
paths-ignore: | |
- "docs/**" | |
concurrency: | |
group: build-test-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: "Unit and Integration Tests" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
id: setup_python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Cache virtual environment | |
uses: actions/cache@v3 | |
with: | |
key: venv-${{ runner.os }}-${{ steps.setup_python.outputs.python-version}} | |
path: .venv | |
- name: Install system packages | |
run: sudo apt-get install -y portaudio19-dev | |
- name: Setup virtual environment | |
run: | | |
python -m venv .venv | |
source .venv/bin/activate | |
- name: Install basic Python dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Build project | |
run: | | |
python -m build | |
- name: Install project and other Python dependencies | |
run: | | |
pip install --editable . | |
- name: Test with pytest | |
run: | | |
pip install pytest | |
pytest --doctest-modules --ignore-glob="*to_be_updated*" src tests |