Mentions légales du service

Skip to content
Snippets Groups Projects
Commit adbb6dee authored by GD's avatar GD
Browse files

document the new test call from Python

parent aba0b7f5
No related branches found
No related tags found
No related merge requests found
...@@ -49,9 +49,20 @@ Manipulated objects are imported from numpy and scipy. Matrices should be stored ...@@ -49,9 +49,20 @@ Manipulated objects are imported from numpy and scipy. Matrices should be stored
### Testing the interface ### Testing the interface
- From the command line (in the project root directory):
```bash ```bash
python spams/tests/test_spams.py -h # to get help python tests/test_spams.py -h # print the man page
python spams/tests/test_spams.py # will run all the tests python tests/test_spams.py # run all the tests
```
- From Python (assuming `spams` package is installed):
```python
from spams.tests import test_spams
test_spams('-h') # print the man page
test_spams() # run all tests
test_spams(['sort', 'calcAAt']) # run specific tests
test_spams(python_exec='python3') # specify the python exec
``` ```
--- ---
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment