Skip to content

Commit

Permalink
New changelog entry: v0.20.0-1 (#438)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Apr 17, 2024
1 parent 941e5be commit cf86708
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test-all-commits.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,14 @@ jobs:
coverage xml
- name: Upload Python test coverage reports to Codecov
uses: codecov/codecov-action@v3.1.4
uses: codecov/codecov-action@v4
with:
files: ./coverage.xml
flags: python-tests
env_vars: OS,PYTHON
fail_ci_if_error: true
verbose: true
token: ${{ secrets.CODECOV_TOKEN }}

test-js-coverage-report:
runs-on: ubuntu-20.04
Expand Down Expand Up @@ -61,9 +62,10 @@ jobs:
yarn test --coverage
- name: Upload javascript test coverage reports to Codecov
uses: codecov/codecov-action@v3.1.4
uses: codecov/codecov-action@v4
with:
files: ./frontend/coverage/clover.xml
flags: js-tests
fail_ci_if_error: true
verbose: true
token: ${{ secrets.CODECOV_TOKEN }}
7 changes: 7 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
pi-top-os-web-portal (0.20.0-1) bullseye; urgency=medium

* Fix package dependencies for bookworm (#437)
* Don't run onboarding apps if not on pi-topOS (#439)

-- pi-top <deb-maintainers@pi-top.com> Wed, 17 Apr 2024 16:00:43 +0000

pi-top-os-web-portal (0.19.1-1) bullseye; urgency=medium

* Package for bookworm (#435)
Expand Down
2 changes: 1 addition & 1 deletion tests/test_wifi_manager_class.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def test_scan_and_get_results_output(wifi_manager_module):
networks = wifi_manager.scan_and_get_results()

assert wifi_manager.is_inactive() is True
assert type(networks) == list
assert isinstance(networks, list)
assert len(networks) == len(network_profiles)

network_profile_keys = list(networks[0].__dict__.keys())
Expand Down

0 comments on commit cf86708

Please sign in to comment.