diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/README.md b/README.md index 07e1d8e6..50b8de59 100644 --- a/README.md +++ b/README.md @@ -583,7 +583,14 @@ Miasm comes with a set of regression tests. To run all of them: ```pycon cd miasm_directory/test + +# Run tests using our own test runner python test_all.py + +# Run tests using standard frameworks (slower, require 'parameterized') +python -m unittest test_all.py # sequential, requires 'unittest' +python -m pytest test_all.py # sequential, requires 'pytest' +python -m pytest -n auto test_all.py # parallel, requires 'pytest' and 'pytest-xdist' ``` Some options can be specified: |