File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -13,19 +13,19 @@ Python 3 and the following packages (all available via `pip`):
13
13
14
14
Or install via the ` requirements.txt ` file:
15
15
16
- ``` pip install -r requirements.txt ```
16
+ pip install -r requirements.txt
17
17
18
18
## Running test cases
19
19
Tests should be run from the command line, in the repository root.
20
20
21
21
### Doctest
22
22
Doctests are executed for a single module at a time. The command runs the tests in database.py (for example):
23
23
24
- ``` python -m doctest -v src/database.py ```
24
+ python -m doctest -v src/database.py
25
25
26
26
The ` -v ` argument requests verbose output - otherwise it only reports test failures.
27
27
28
28
### Pytest
29
29
To run all test cases (in the ` tests/ ` folder):
30
30
31
- ``` python -m pytest tests ```
31
+ python -m pytest tests
You can’t perform that action at this time.
0 commit comments