Skip to content

Commit c8a2fad

Browse files
author
Luca De Feo
committed
More path fixes
1 parent 6f7e0c7 commit c8a2fad

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tests/rundoctest.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,15 @@
33
import os
44
import sys
55
import cypari2
6-
import autogen
76
import doctest
87

98
path = os.path.dirname(__file__)
109
if path:
1110
os.chdir(path)
1211
os.chdir('..')
13-
sys.path += os.getcwd()
12+
sys.path.append(os.getcwd())
13+
14+
import autogen
1415

1516
failed = 0
1617
attempted = 0

0 commit comments

Comments
 (0)