From bc4d7a0e0b25eb6a7c24565ecc1502c765c01f92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bruckert?= Date: Sun, 23 Jun 2024 20:25:02 +0100 Subject: [PATCH 1/3] remove useless comment --- tests/integration/non_user_endpoints/test.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/integration/non_user_endpoints/test.py b/tests/integration/non_user_endpoints/test.py index 2649276e..2aa878b5 100644 --- a/tests/integration/non_user_endpoints/test.py +++ b/tests/integration/non_user_endpoints/test.py @@ -60,8 +60,6 @@ class AuthTestSpotipy(unittest.TestCase): heavyweight_ep1_url = 'https://open.spotify.com/episode/68kq3bNz6hEuq8NtdfwERG' reply_all_ep1_urn = 'spotify:episode:1KHjbpnmNpFmNTczQmTZlR' - # The following audiobooks are currently available in the GB market - # but might not be in other markets dune_urn = 'spotify:audiobook:7iHfbu1YPACw6oZPAFJtqe' dune_id = '7iHfbu1YPACw6oZPAFJtqe' dune_url = 'https://open.spotify.com/audiobook/7iHfbu1YPACw6oZPAFJtqe' From 2fa88ac3cc804df59ffd64561659df9bb455e3d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bruckert?= Date: Sun, 23 Jun 2024 20:32:17 +0100 Subject: [PATCH 2/3] Update integration_tests.yml --- .github/workflows/integration_tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml index f6b6eac9..a203147a 100644 --- a/.github/workflows/integration_tests.yml +++ b/.github/workflows/integration_tests.yml @@ -1,6 +1,6 @@ name: Integration tests -on: [push, pull_request_target] +on: [push] jobs: build: From ed1ab15119d5cef1b9f68bd3995a5a394f132bff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bruckert?= Date: Sun, 23 Jun 2024 20:37:55 +0100 Subject: [PATCH 3/3] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e0d3fa5a..55810481 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,7 +16,7 @@ Add your changes below. - Added test_artist_id, test_artist_url, and test_artists_mixed_ids to non_user_endpoints test.py ### Fixed -- +- Audiobook integration tests ### Removed - `mock` no longer listed as a test dependency. Only built-in `unittest.mock` is actually used.