Skip to content

Commit

Permalink
fix : manual_test.py script updated
Browse files Browse the repository at this point in the history
  • Loading branch information
sepandhaghighi committed Mar 26, 2024
1 parent 4d0265d commit 7488ecd
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions others/manual_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,13 +69,14 @@ def wait(seconds=10):

# Test5
print_line()
print("5. 'loop = True'")
sid1 = nava.play(TEST_FILE_PATH, async_mode=True, loop=True)
print("You should hear this sound repeatedly.")
wait(120)
print("5. Stop all sounds")
nava.stop_all()

# Test6
print_line()
print("6. Stop all sounds")
nava.stop_all()
print("6. 'loop = True'")
sid1 = nava.play(TEST_FILE_PATH, async_mode=True, loop=True)
print("You should hear this sound repeatedly.")
wait(120)
nava.stop(sid1)
print("End!")

0 comments on commit 7488ecd

Please sign in to comment.