summaryrefslogtreecommitdiff
path: root/dev-python/rdflib/files/rdflib-4-test.patch
blob: e79e3ff2a6eb55b9066a111e47a2775275f4f36e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
https://github.com/joernhees/rdflib/commit/36335d5d178ffbcc0422b8b8ee7444893a30ed84
diff --git a/test/test_issue375.py b/test/test_issue375.py
index 29726b9..17f168b 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: <http://purl.org/dc/terms/> .
@@ -146,6 +148,9 @@
     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()