Skip to content

Commit

Permalink
Update tests for Python 3
Browse files Browse the repository at this point in the history
  • Loading branch information
pfernique committed Sep 6, 2017
1 parent 295fa84 commit 83aad85
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/test_feedback.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,9 @@ def test_with_none_overload_export(self, overload="none"):
code = autowig.feedback(curr, '.', asg)
if code:
exec(code, locals())
s = subprocess.Popen(['scons', 'py'],
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
_, curr = s.communicate()

@attr(level=2)
def test_with_all_overload_export(self):
Expand Down

0 comments on commit 83aad85

Please sign in to comment.