Skip to content

Commit

Permalink
Bugfix: path to back end tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bricoletc committed Aug 6, 2019
1 parent 585e34f commit 0736327
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ def _build_backend(root_dir):

def _test_backend(root_dir):
cmake_dir = os.path.join(root_dir, 'cmake-build-debug')
test_runner = os.path.join(cmake_dir, 'libgramtools', 'tests', 'test_main')
test_dir = os.path.join(root_dir, 'libgramtools', 'tests')
test_runner = os.path.join(cmake_dir, 'libgramtools', 'submods', 'tests', 'test_main')
test_dir = os.path.join(root_dir, 'libgramtools', 'submods', 'tests')

return_code = subprocess.call([test_runner], cwd=test_dir)
if return_code != 0:
Expand Down

0 comments on commit 0736327

Please sign in to comment.