diff options
author | Frederick Muriuki Muriithi | 2022-11-16 04:25:43 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-11-16 04:25:43 +0300 |
commit | ee5c11fb5146ac1b18aa24ec4dd7a43aaf35033a (patch) | |
tree | eeac2dbfd10f7cffe9f1b517f3d87d35cbe0d2d8 /tests/qc_app/test_parse.py | |
parent | d511e44b1a2b0e70236831926d86a10d589e9235 (diff) | |
download | gn-uploader-ee5c11fb5146ac1b18aa24ec4dd7a43aaf35033a.tar.gz |
tests: Fix some failing tests
Diffstat (limited to 'tests/qc_app/test_parse.py')
-rw-r--r-- | tests/qc_app/test_parse.py | 5 |
1 files changed, 3 insertions, 2 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]) |