Skip to content

Commit f7e7d10

Browse files
committed
Update readme
1 parent a58aceb commit f7e7d10

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@ Python 3 and the following packages (all available via `pip`):
1313

1414
Or install via the `requirements.txt` file:
1515

16-
```pip install -r requirements.txt```
16+
pip install -r requirements.txt
1717

1818
## Running test cases
1919
Tests should be run from the command line, in the repository root.
2020

2121
### Doctest
2222
Doctests are executed for a single module at a time. The command runs the tests in database.py (for example):
2323

24-
```python -m doctest -v src/database.py```
24+
python -m doctest -v src/database.py
2525

2626
The `-v` argument requests verbose output - otherwise it only reports test failures.
2727

2828
### Pytest
2929
To run all test cases (in the `tests/` folder):
3030

31-
```python -m pytest tests```
31+
python -m pytest tests

0 commit comments

Comments
 (0)