From 36335d5d178ffbcc0422b8b8ee7444893a30ed84 Mon Sep 17 00:00:00 2001 From: Joern Hees Date: Wed, 18 Mar 2015 16:53:19 +0100 Subject: set PYTHONPATH to make rdfpipe tests use the right rdflib version before this fix, the invocation of rdflib/tools/rdfpipe.py from a subprocess didn't have the current version of rdflib in its path but the one from the virtualenv, which is the one installed as dependency for SPARQLWrapper! --- test/test_issue375.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/test/test_issue375.py b/test/test_issue375.py index 29726b96..17f168ba 100644 --- a/test/test_issue375.py +++ b/test/test_issue375.py @@ -1,4 +1,6 @@ +import os import subprocess +import sys import re rdfa_expected = u'''@prefix dc: . @@ -146,6 +148,9 @@ mdata_expected = u'''@prefix cc: . rdfa:usesVocabulary schema: . '''.strip() +env = os.environ.copy() +env['PYTHONPATH'] = '.:' + env.get('PYTHONPATH', '') + def test_rdfpipe_bytes_vs_str(): """ Issue 375: rdfpipe command generates bytes vs. str TypeError @@ -155,7 +160,7 @@ def test_rdfpipe_bytes_vs_str(): rdfpipe to ensure that we get the expected results. """ args = ['python', 'rdflib/tools/rdfpipe.py', '-i', 'rdfa1.1', 'test/rdfa/oreilly.html'] - proc = subprocess.Popen(args, stdout=subprocess.PIPE, universal_newlines=True) + proc = subprocess.Popen(args, stdout=subprocess.PIPE, universal_newlines=True, env=env) res = '' while proc.poll() is None: res += proc.stdout.read() @@ -170,7 +175,7 @@ def test_rdfpipe_mdata_open(): the open() builtin instead. """ args = ['python', 'rdflib/tools/rdfpipe.py', '-i', 'mdata', 'test/mdata/codelab.html'] - proc = subprocess.Popen(args, stdout=subprocess.PIPE, universal_newlines=True) + proc = subprocess.Popen(args, stdout=subprocess.PIPE, universal_newlines=True, env=env) res = '' while proc.poll() is None: res += proc.stdout.read() -- cgit v1.2.1