aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMunyoki Kilyungi2024-10-02 06:35:20 +0300
committerBonfaceKilz2024-10-02 06:59:11 +0300
commit757f674573af5eb7ef1b41b5021de8a9a40a05e8 (patch)
tree303f3a6dcadb596290ae5eaee9cbeffb20b7fb53 /tests
parent540300ad13d0d1ced0ea6c9c8efd8272a933dde3 (diff)
downloadgenenetwork3-757f674573af5eb7ef1b41b5021de8a9a40a05e8.tar.gz
Fix pylint failure.
* tests/fixtures/rdf.py (rdf_setup): Fix C0301. Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/fixtures/rdf.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/fixtures/rdf.py b/tests/fixtures/rdf.py
index 19253bd..64d3107 100644
--- a/tests/fixtures/rdf.py
+++ b/tests/fixtures/rdf.py
@@ -34,7 +34,9 @@ def rdf_setup():
with open(init_file, "w", encoding="utf-8") as file_:
file_.write(Template(VIRTUOSO_INI_FILE).substitute(
dir_path=tmpdirname))
- # when using shell=True, pass in string as args, ref: https://stackoverflow.com/a/10661488
+ # when using shell=True, pass in string as args, ref:
+ # https://stackoverflow.com/a/10661488
+ # pylint: disable-next=line-too-long
command = f"virtuoso-t +foreground +wait +no-checkpoint +configfile {init_file}"
with subprocess.Popen(
command,