diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/qc_app/test_parse.py | 5 | ||||
-rw-r--r-- | tests/qc_app/test_progress_indication.py | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/tests/qc_app/test_parse.py b/tests/qc_app/test_parse.py index e608a03..f173e0a 100644 --- a/tests/qc_app/test_parse.py +++ b/tests/qc_app/test_parse.py @@ -1,6 +1,7 @@ """Test the 'parse' module in the web-ui""" -import redis +import sys +import redis import pytest from qc_app.jobs import job @@ -36,7 +37,7 @@ def test_parse_with_existing_uploaded_file( assert the_job["job_id"] == job_id assert the_job["filename"] == filename assert the_job["command"] == " ".join([ - "python3", "-m", "scripts.validate_file", filetype, + sys.executable, "-m", "scripts.validate_file", filetype, f"{client.application.config['UPLOAD_FOLDER']}/{filename}", redis_url, job_id]) diff --git a/tests/qc_app/test_progress_indication.py b/tests/qc_app/test_progress_indication.py index 11a412e..8eba970 100644 --- a/tests/qc_app/test_progress_indication.py +++ b/tests/qc_app/test_progress_indication.py @@ -52,7 +52,7 @@ def test_with_in_progress_no_error_job( (f'{job_id}').encode("utf8") + b'" value="0.32242342">32.242342</progress>') in resp.data assert ( - b'<span class="alert-success">No errors found so far</span>' + b'<span >No errors found so far</span>' in resp.data) assert b"<table" not in resp.data |