Switch test files to the standard test_*.py scheme.

This commit is contained in:
Aymeric Augustin
2019-12-22 13:44:13 +01:00
parent 067395d5c5
commit ced0a94204
54 changed files with 56 additions and 55 deletions

View File

@@ -29,8 +29,8 @@ Tests can be run using `unittest` or `pytest` (install pytest if needed with `pi
Run all the tests from the root of the cloned repository with the commands:
```bash
python -m unittest discover -s tests -p "*test.py" -t .
python -m unittest discover -s examples -p "*test.py" -t examples
python -m unittest discover -s tests -t . -v
python -m unittest discover -s examples -t examples -v
```
or