Skip to content

Commit

Permalink
build(deps): Bump tj-actions/verify-changed-files from 16 to 17 (#67)
Browse files Browse the repository at this point in the history
* build(deps): Bump tj-actions/verify-changed-files from 16 to 17

Bumps [tj-actions/verify-changed-files](https://github.com/tj-actions/verify-changed-files) from 16 to 17.
- [Release notes](https://github.com/tj-actions/verify-changed-files/releases)
- [Changelog](https://github.com/tj-actions/verify-changed-files/blob/main/HISTORY.md)
- [Commits](tj-actions/verify-changed-files@v16...v17)

---
updated-dependencies:
- dependency-name: tj-actions/verify-changed-files
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Pascal Zimmermann <[email protected]>
  • Loading branch information
dependabot[bot] and ZPascal authored Jan 4, 2024
1 parent df72cf6 commit b75287c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pull-request-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,13 @@ jobs:
pytest-coverage-path: ./pytest-coverage.txt
junitxml-path: ./pytest.xml
hide-badge: true
create-new-comment: true
create-new-comment: false

- name: Generate coverage badge
run: coverage-badge -f -o docs/coverage.svg

- name: Check changed files
uses: tj-actions/verify-changed-files@v16
uses: tj-actions/verify-changed-files@v17
id: verify-changed-files
with:
files: |
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:
run: pydoc-markdown --render-toc && rm -rf docs/content && mv build/docs/* docs

- name: Check changed files
uses: tj-actions/verify-changed-files@v16
uses: tj-actions/verify-changed-files@v17
id: verify-changed-files
with:
files: |
Expand Down
4 changes: 2 additions & 2 deletions tests/integrationtest/test_playlist.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ def test_search_playlist(self):
self.assertEqual("Test1", self.playlist.search_playlist()[0].get("name"))

def test_get_playlist(self):
self.assertEqual("Test1", self.playlist.get_playlist("PgorUJA4z").get("name"))
self.assertEqual("Test1", self.playlist.get_playlist("ce7b96dd-480a-4d8f-9950-e5082993574b").get("name"))

def test_get_playlist_items(self):
self.assertEqual(
"tests", self.playlist.get_playlist_items("PgorUJA4z")[0].get("value")
"dashboard_by_id", self.playlist.get_playlist_items("ce7b96dd-480a-4d8f-9950-e5082993574b")[0].get("type")
)

def test_a_create_playlist(self):
Expand Down

0 comments on commit b75287c

Please sign in to comment.