Remove problematic mutation of the perch tfhub config. (Running from_config again with the same config leads to an error, because both tfhub_version and model_path are set.) #3021
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: CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
# Allows to run this workflow manually from the Actions tab on GitHub. | |
workflow_dispatch: | |
jobs: | |
test-ubuntu: | |
name: "test on ${{ matrix.python-version }} on ${{ matrix.os }}" | |
runs-on: "${{ matrix.os }}" | |
strategy: | |
matrix: | |
python-version: ["3.10", "3.11"] | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Poetry | |
run: pipx install poetry | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'poetry' | |
- name: Install Chirp and its dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install libsndfile1 ffmpeg | |
poetry install --with jaxtrain --with nonwindows | |
- name: Test with unittest | |
run: poetry run python -m unittest discover -s chirp/tests -p "*test.py" | |
- name: Test training with unittest | |
run: poetry run python -m unittest discover -s chirp/train_tests -p "*test.py" | |
- name: Test inference with unittest | |
run: poetry run python -m unittest discover -s chirp/inference/tests -p "*test.py" | |
- name: Test hoplite with unittest | |
run: poetry run python -m unittest discover -s chirp/projects/agile2/tests -p "*test.py" | |
- name: Test agile2 with unittest | |
run: poetry run python -m unittest discover -s chirp/projects/hoplite/tests -p "*test.py" |