Skip to content

Commit 346bc0a

Browse files
author
jrozek
committed
fixes from PR comments
1 parent 9373077 commit 346bc0a

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,10 @@ build
77
__pycache__
88
tests/test_django/db.sqlite3
99
htmlcov
10-
.coverage
1110

1211
# pytest-cov
1312
.coverage*
1413
coverage.xml
14+
15+
# macOS
16+
.DS_Store

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Install the package in editable mode and make sure that `django` and
3737
`pytest-django` are not installed.
3838

3939
```bash
40-
pip install -e .[tests]
40+
pip install -e ".[tests]"
4141
pip uninstall django pytest-django
4242
```
4343

@@ -50,7 +50,7 @@ Then follow the instructions in
5050
Install the package in editable mode along with Django dependencies:
5151

5252
```bash
53-
pip install -e .[django,tests,django_tests]
53+
pip install -e ".[django,tests,django_tests]"
5454
```
5555

5656
Then follow the instructions in
@@ -72,10 +72,10 @@ To run tests in parallel, use the following command.
7272
pytest -v -n auto
7373
```
7474

75-
To run tests with coverage, use the following command.
75+
To run coverage tests, use the following command.
7676

7777
```bash
7878
pytest -v --cov=sio3pack --cov-report=html
7979
```
8080

81-
Coverage report will be generated in the `htmlcov/index.html`.
81+
The coverage report will be generated in the file `htmlcov/index.html`.

0 commit comments

Comments
 (0)