Adding verbosity to travis make.

This commit is contained in:
Patrick Shriwise 2020-05-12 10:26:13 -05:00
parent 2007ba847e
commit 2c0d54adb4

View file

@ -32,7 +32,7 @@ def cpp_driver(request):
# Run cmake/make to build the shared libary
subprocess.run(['cmake', os.path.pardir], check=True)
subprocess.run(['make'], check=True)
subprocess.run(['make', 'VERBOSE=1'], check=True)
os.chdir(os.path.pardir)
yield "./build/cpp_driver"