2016-01-26 16:56:50 +01:00
|
|
|
# Installing `pytest`
|
|
|
|
|
|
2016-03-25 18:31:00 -04:00
|
|
|
We recommend you install [pytest](http://pytest.org/latest/) and
|
|
|
|
|
[pytest-cache](http://pythonhosted.org/pytest-cache/). `pytest` is a testing
|
|
|
|
|
tool that will give you more flexibility over running your unit tests.
|
|
|
|
|
|
|
|
|
|
```bash
|
2016-04-14 13:17:43 +02:00
|
|
|
pip install pytest pytest-cache
|
2016-01-26 16:56:50 +01:00
|
|
|
```
|
2016-03-25 18:31:00 -04:00
|
|
|
|
|
|
|
|
If you get a `command not found` response from your system, you can find a
|
|
|
|
|
tutorial on how to install `pip`
|
|
|
|
|
[here](https://pip.pypa.io/en/stable/installing/).
|
|
|
|
|
|
|
|
|
|
If you choose not to install `pytest`, you can still run tests individually and
|
|
|
|
|
skip the rest of this tutorial:
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
cd exercism/python/bob
|
|
|
|
|
python bob_test.py
|
2016-01-26 16:56:50 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
# Running the Tests
|
|
|
|
|
|
2016-03-25 18:31:00 -04:00
|
|
|
## Run All Tests
|
2016-01-26 16:56:50 +01:00
|
|
|
|
2016-03-25 18:31:00 -04:00
|
|
|
To run all tests for a specific exercise (we will take the `bob.py` exercise as
|
|
|
|
|
an example here), place yourself in the directory where that exercise has been
|
|
|
|
|
fetched and run:
|
|
|
|
|
|
|
|
|
|
```bash
|
2016-02-26 18:16:48 -08:00
|
|
|
py.test bob_test.py
|
2016-01-26 16:56:50 +01:00
|
|
|
```
|
|
|
|
|
|
2016-03-25 18:31:00 -04:00
|
|
|
**Note:** To run the tests you need to pass the name of the testsuite file to
|
|
|
|
|
`pytest` (generally, the file ending with `_test.py`), **NOT** the file you
|
|
|
|
|
created to solve the problem (which is your _implementation_). This is because
|
|
|
|
|
in the latter case, since there are no defined test cases in your
|
|
|
|
|
implementation, `pytest` will just return a positive result, specifying that
|
|
|
|
|
it ran zero tests. Like this:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
============================= bob.py ==============================
|
|
|
|
|
|
|
|
|
|
---------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
Ran 0 tests in 0.000s
|
2016-01-26 16:56:50 +01:00
|
|
|
|
2016-03-25 18:31:00 -04:00
|
|
|
OK
|
2016-01-26 16:56:50 +01:00
|
|
|
```
|
2016-03-25 18:31:00 -04:00
|
|
|
|
|
|
|
|
## More `pytest` Examples
|
|
|
|
|
|
|
|
|
|
### Stop After First Failure
|
|
|
|
|
The above will run all the tests, whether they fail or not. If you'd rather stop
|
|
|
|
|
the process and exit on the first failure, run:
|
|
|
|
|
|
|
|
|
|
```bash
|
2016-02-26 18:16:48 -08:00
|
|
|
py.test -x bob_test.py
|
2016-01-26 16:56:50 +01:00
|
|
|
```
|
|
|
|
|
|
2016-03-25 18:31:00 -04:00
|
|
|
### Failed Tests First
|
2016-01-26 16:56:50 +01:00
|
|
|
|
2016-03-25 18:31:00 -04:00
|
|
|
`pytest-cache` remembers which tests failed, and can run those tests first.
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
py.test --ff bob_test.py
|
2016-01-26 16:56:50 +01:00
|
|
|
```
|
|
|
|
|
|
2016-03-25 18:31:00 -04:00
|
|
|
### Running All Tests for All Exercises
|
2016-01-26 16:56:50 +01:00
|
|
|
|
2016-03-25 18:31:00 -04:00
|
|
|
```bash
|
2016-05-08 20:48:29 +04:00
|
|
|
cd exercism/python/
|
|
|
|
|
py.test
|
2016-03-25 18:31:00 -04:00
|
|
|
```
|
2016-01-26 16:56:50 +01:00
|
|
|
|
2016-03-25 18:31:00 -04:00
|
|
|
## Recommended Workflow
|
|
|
|
|
|
|
|
|
|
We recommend you run this command while working on exercises.
|
|
|
|
|
|
|
|
|
|
```bash
|
2016-05-08 20:48:29 +04:00
|
|
|
cd exercism/python/bob
|
|
|
|
|
py.test -x --ff bob_test.py
|
2016-03-25 18:31:00 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## PDB
|
|
|
|
|
|
|
|
|
|
Will drop you into the python debugger when a test fails. To learn how to use
|
|
|
|
|
pdb, check out the
|
|
|
|
|
[documentation](https://docs.python.org/3/library/pdb.html#debugger-commands).
|
|
|
|
|
|
|
|
|
|
You may also be interested in watching [Clayton Parker's "So you think you can
|
|
|
|
|
pdb?" PyCon 2015 talk](https://www.youtube.com/watch?v=P0pIW5tJrRM)
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
py.test --pdb bob_test.py
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## PEP8
|
|
|
|
|
|
|
|
|
|
PEP8 is the [Style Guide for Python
|
|
|
|
|
Code](https://www.python.org/dev/peps/pep-0008/). If you would like to test for
|
|
|
|
|
compliance to the style guide, install
|
|
|
|
|
[pytest-pep8](https://pypi.python.org/pypi/pytest-pep8)
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
pip install pytest-pep8
|
2016-01-26 16:56:50 +01:00
|
|
|
```
|
2016-03-25 18:31:00 -04:00
|
|
|
|
|
|
|
|
and add the pep8 flag to your command
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
py.test --pep8 bob_test.py
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Read the [pytest documentation](http://pytest.org/latest/contents.html#toc) and
|
|
|
|
|
[pytest-cache](http://pythonhosted.org/pytest-cache/) documentation to learn
|
|
|
|
|
more.
|