File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 6161 python-version : ${{ matrix.python-version }}
6262 - run : uv run --with Django~=${{ matrix.django-version }}.0 pytest -m "not selenium"
6363 - uses : codecov/codecov-action@v5
64+ with :
65+ token : ${{ secrets.CODECOV_TOKEN }}
66+ flags : python-${{ matrix.python-version }}
6467 Selenium :
6568 needs :
6669 - standardjs
7477 - uses : astral-sh/setup-uv@v7
7578 - run : uv run pytest -m selenium
7679 - uses : codecov/codecov-action@v5
80+ with :
81+ token : ${{ secrets.CODECOV_TOKEN }}
82+ flags : selenium
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ write_to = "django_select2/_version.py"
7171
7272[tool .pytest .ini_options ]
7373minversion = " 6.0"
74- addopts = " --cov --tb=short -rxs"
74+ addopts = " --cov --cov-report=xml --cov-report=term -- tb=short -rxs"
7575testpaths = [" tests" ]
7676DJANGO_SETTINGS_MODULE = " tests.testapp.settings"
7777filterwarnings = [" ignore::PendingDeprecationWarning" , " error::RuntimeWarning" ]
@@ -81,6 +81,7 @@ source = ["django_select2"]
8181
8282[tool .coverage .report ]
8383show_missing = true
84+ skip_covered = true
8485
8586[tool .isort ]
8687atomic = true
You can’t perform that action at this time.
0 commit comments