File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 7
7
__pycache__
8
8
tests /test_django /db.sqlite3
9
9
htmlcov
10
- .coverage
11
10
12
11
# pytest-cov
13
12
.coverage *
14
13
coverage.xml
14
+
15
+ # macOS
16
+ .DS_Store
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ Install the package in editable mode and make sure that `django` and
37
37
` pytest-django ` are not installed.
38
38
39
39
``` bash
40
- pip install -e .[tests]
40
+ pip install -e " .[tests]"
41
41
pip uninstall django pytest-django
42
42
```
43
43
@@ -50,7 +50,7 @@ Then follow the instructions in
50
50
Install the package in editable mode along with Django dependencies:
51
51
52
52
``` bash
53
- pip install -e .[django,tests,django_tests]
53
+ pip install -e " .[django,tests,django_tests]"
54
54
```
55
55
56
56
Then follow the instructions in
@@ -72,10 +72,10 @@ To run tests in parallel, use the following command.
72
72
pytest -v -n auto
73
73
```
74
74
75
- To run tests with coverage, use the following command.
75
+ To run coverage tests , use the following command.
76
76
77
77
``` bash
78
78
pytest -v --cov=sio3pack --cov-report=html
79
79
```
80
80
81
- Coverage report will be generated in the ` htmlcov/index.html ` .
81
+ The coverage report will be generated in the file ` htmlcov/index.html ` .
You can’t perform that action at this time.
0 commit comments