Skip to content

Commit 423c4f8

Browse files
committed
remove extra print statements
1 parent 3227b14 commit 423c4f8

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

tests/conftest.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -334,21 +334,15 @@ def fixture_get_playlist_with_dupes(yt_oauth: YTMusic, sample_song_list_dupes):
334334
@pytest.fixture(name="add_history_items")
335335
def fixture_add_history_items(yt_oauth: YTMusic, sample_long_song_list):
336336
num_songs_added = 0
337-
print(f"total songs to be added to history: {len(sample_long_song_list)}")
338-
print(sample_long_song_list)
339337
for song in sample_long_song_list:
340338
song = yt_oauth.get_song(song, yt_oauth.get_signatureTimestamp())
341339
try:
342-
print(f"Adding {song['videoDetails']['title']!r} to history...")
343340
response = yt_oauth.add_history_item(song)
344341
response.raise_for_status()
345342
except Exception as e:
346343
print(e)
347344
print("skipping a song that couldn't be added to history...")
348345
continue
349346
assert response.status_code == 204
350-
print(f"Added {song['videoDetails']['title']!r} to history...")
351347
num_songs_added += 1
352-
print(f"total songs added to history so far: {num_songs_added}")
353-
print(f"{num_songs_added} were added to history successfully")
354348
return num_songs_added

0 commit comments

Comments
 (0)