mirror of
https://github.com/CoolProp/CoolProp.git
synced 2026-01-23 12:58:03 -05:00
11 lines
275 B
Python
11 lines
275 B
Python
from __future__ import print_function
|
|
|
|
def run():
|
|
import nose, os
|
|
|
|
print('about to run the tests, please be patient')
|
|
this_path, file = os.path.split(os.path.abspath(__file__))
|
|
nose.run(argv = ['--where',this_path])
|
|
|
|
if __name__=='__main__':
|
|
run() |