Skip to content

Commit

Permalink
Update test_basic.py
Browse files Browse the repository at this point in the history
  • Loading branch information
pfernique committed Oct 8, 2017
1 parent a6c1221 commit d1fc324
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ def setUpClass(cls):
if any(platform.win32_ver()):
cls.prefix = os.path.join(cls.prefix, 'Library')
Repo.clone_from('https://github.com/StatisKit/FP17.git', cls.srcdir.relpath('.'))
subprocess.check_output(['scons', 'cpp', '--prefix=' + str(cls.prefix)],
cwd=cls.srcdir)
if any(platform.win32_ver()):
cls.scons = subprocess.check_output(['where', 'scons.bat']).strip()
else:
cls.scons = subprocess.check_output(['which', 'scons']).strip()
subprocess.check_output([cls.scons, 'cpp', '--prefix=' + str(cls.prefix)],
cwd=cls.srcdir)
cls.incdir = cls.prefix.abspath()/'include'/'basic'

def test_mapping_export(self):
Expand Down

0 comments on commit d1fc324

Please sign in to comment.