Skip to content

Commit

Permalink
fix: ammend installation of optional dependencies in workflow files
Browse files Browse the repository at this point in the history
  • Loading branch information
mbsantiago committed Nov 23, 2023
1 parent fbdf8db commit cae4aed
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
sudo apt-get update && sudo apt-get install libsndfile1
python -m pip install --upgrade pip
python -m pip install pytest hypothesis coverage pytest-coverage html5lib
python -m pip install .
python -m pip install ".[all]"
- name: Run Tests
run: |
pytest --cov=soundevent --cov-report=xml tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
run: |
sudo apt-get update && sudo apt-get install libsndfile1
python -m pip install --upgrade pip
python -m pip install .
python -m pip install ".[all]"
- uses: actions/cache@v3
with:
key: mkdocs-material-${{ env.cache_id }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
sudo apt-get update && sudo apt-get install libsndfile1
python -m pip install --upgrade pip
python -m pip install pytest hypothesis ruff mypy black html5lib
python -m pip install .
python -m pip install ".[all]"
- name: Check format is correct
run: |
black --check src
Expand Down

0 comments on commit cae4aed

Please sign in to comment.