songs2slides

A tool that automatically finds song lyrics and creates lyric slideshows
git clone https://git.ashermorgan.net/songs2slides/
Log | Files | Refs | README

commit 5be9e36e8c1e3c7841be070a678a28776cddeba2
parent 6e7e562ffdc5397103dc61b14ece831112037df3
Author: Asher Morgan <59518073+ashermorgan@users.noreply.github.com>
Date:   Tue, 16 Apr 2024 17:13:52 -0700

Update e2e tests

Diffstat:
Mtests/test_e2e.py | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/test_e2e.py b/tests/test_e2e.py @@ -9,7 +9,7 @@ def api(xprocess): class Starter(ProcessStarter): pattern = '.*Running.*' timeout = 10 - args = ['python', '-m', 'flask', '--app', '../../../../mock_api.py', 'run'] + args = ['python3', '-m', 'flask', '--app', '../../../../mock_api.py', 'run'] env = { 'FLASK_RUN_PORT': port, } @@ -29,7 +29,7 @@ def server(xprocess, api): class Starter(ProcessStarter): pattern = '.*Running.*' timeout = 10 - args = ['python', '-m', 'flask', '--app', '../../../../songs2slides', 'run'] + args = ['python3', '-m', 'flask', '--app', '../../../../songs2slides', 'run'] env = { 'API_URL': api + '/{title}/{artist}/', 'FLASK_RUN_PORT': port,