Skip to content

Commit

Permalink
Began adding unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
beveradb committed Jan 29, 2024
1 parent 249156d commit c8fde7c
Show file tree
Hide file tree
Showing 4 changed files with 303 additions and 169 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Audio Separator CI

on: [push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Display Python version
run: python -c "import sys; print(sys.version)"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
- name: Run unit tests
run: pytest tests/unit

# - name: Run integration tests
# run: pytest tests/integration
# - name: Run end-to-end tests
# run: pytest tests/end_to_end
Loading

0 comments on commit c8fde7c

Please sign in to comment.