Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions coveragepy-lcov
pip install tox tox-gh-actions coverage
- name: Install frontend
run: |
pushd swift_browser_ui_frontend
Expand All @@ -31,7 +31,7 @@ jobs:
- name: Run unit tests
run: |
tox -e pytest
coveragepy-lcov --output_file_path lcov.info
coverage lcov -o lcov.info
- name: Send coverage to coveralls
uses: coverallsapp/github-action@master
with:
Expand Down