Testing framework ================= We started with some preliminary test for OSMPS using the *nosetests* framework. We plan to extend those tests to various parts of the program. For python3 and nosetests3 the tests can be run with the following command .. code-block:: bash osmps@manual:~$ nosetests3 The tests on the Fortran side of the library have to be compiled before they are accessible via nosetests. They can be included in the compilation with .. code-block:: bash osmps@manual:~$ python3 BuildOSMPS.py --tests=True You may use any other options together with the ``--tests=True`` option. .. Currently, we have 48 tests.