Skip to content

Commit

Permalink
Updated workflow files to use new testing dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
mbsantiago committed Nov 23, 2023
1 parent d2e0bc8 commit fbdf8db
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 22 deletions.
13 changes: 2 additions & 11 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -1,36 +1,27 @@
name: Coverage

on:
push:
branches: ["main"]

pull_request:
branches: ["main"]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.11'

python-version: "3.11"
- name: Install dependencies
run: |
sudo apt-get update && sudo apt-get install libsndfile1
python -m pip install --upgrade pip
python -m pip install pytest hypothesis coverage pytest-coverage
python -m pip install pytest hypothesis coverage pytest-coverage html5lib
python -m pip install .
- name: Run Tests
run: |
pytest --cov=soundevent --cov-report=xml tests
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
Expand Down
12 changes: 1 addition & 11 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,45 +1,35 @@
name: Test

on:
push:
branches: ["main"]

pull_request:
branches: ["main"]

jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
sudo apt-get update && sudo apt-get install libsndfile1
python -m pip install --upgrade pip
python -m pip install pytest hypothesis ruff mypy black
python -m pip install pytest hypothesis ruff mypy black html5lib
python -m pip install .
- name: Check format is correct
run: |
black --check src
black --check tests
- name: Make sure types are consistent
run: mypy --ignore-missing-imports src

- name: Lint with ruff
run: ruff src

- name: Test with pytest
run: pytest tests

0 comments on commit fbdf8db

Please sign in to comment.