File tree Expand file tree Collapse file tree 4 files changed +15
-14
lines changed Expand file tree Collapse file tree 4 files changed +15
-14
lines changed Original file line number Diff line number Diff line change
1
+ [run]
2
+ omit =
3
+ demo/wsgi.py
4
+ manage.py
5
+ setup.py
6
+ # Don't check for coverage in the temporary views folder at root. `demo/views/` should be covered
7
+ views/*
8
+
9
+ [report]
10
+ show_missing = True
Original file line number Diff line number Diff line change 80
80
pip install -e ".[testing]"
81
81
pip install "django~=${{ matrix.django }}"
82
82
- name : Test
83
- run : (cd demo; pytest --cov-report=xml)
83
+ run : pytest --cov-report=xml
84
84
- uses : codecov/codecov-action@v2
85
- with :
86
- files : ./demo/coverage.xml
87
- verbose : true
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
[pytest]
2
2
norecursedirs = .* _* htmlcov
3
+ DJANGO_SETTINGS_MODULE =demo.settings
4
+ pythonpath = demo
5
+ filterwarnings =
6
+ ignore
3
7
addopts =
4
8
--tb =short
5
- --ds =demo.settings
6
- --cov =../file_router
7
9
--cov =.
8
- --cov-report =html
9
10
--cov-report =term:skip-covered
10
11
--cov-fail-under =100
You can’t perform that action at this time.
0 commit comments