Skip to content

Commit

Permalink
Black - coverage test
Browse files Browse the repository at this point in the history
  • Loading branch information
utement committed Oct 17, 2023
1 parent 81b471f commit 511963d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 22 deletions.
13 changes: 1 addition & 12 deletions .github/workflows/incremental-coverage-test.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Coverage check
on: [push, pull_request]
on: [pull_request]
jobs:
lint:
name: Code coverage
Expand Down Expand Up @@ -37,14 +37,3 @@ jobs:
gh_token: ${{ secrets.GITHUB_TOKEN }}
pr_number: ${{github.event.pull_request.number}}
if: github.event_name == 'pull_request'

- name: Coverage check on push
uses: velis74/incremental-coverage-check@main
with:
py_coverage_json: coverage.json
base_ref: ${{ github.event.before }}
head_ref: HEAD
rep_ref: main
logging_level: INFO
gh_token: ${{ secrets.GITHUB_TOKEN }}
if: github.event_name == 'push'
22 changes: 12 additions & 10 deletions django_project_base/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,21 @@
from django_project_base.router import django_project_base_router
from django_project_base.views import browser_update_script

SPECTACULAR_DEFAULTS['TITLE'] = 'Rest documentation'
SPECTACULAR_DEFAULTS['DESCRIPTION'] = 'Api documentation'
SPECTACULAR_DEFAULTS['VERSION'] = '0.0.1'
SPECTACULAR_DEFAULTS['PREPROCESSING_HOOKS'] = [
'django_project_base.router.filter_rest_documentation_endpoints'
SPECTACULAR_DEFAULTS["TITLE"] = "Rest documentation"
SPECTACULAR_DEFAULTS["DESCRIPTION"] = "Api documentation"
SPECTACULAR_DEFAULTS["VERSION"] = "0.0.1"
SPECTACULAR_DEFAULTS["PREPROCESSING_HOOKS"] = [
"django_project_base.router.filter_rest_documentation_endpoints"
]

SPECTACULAR_DEFAULTS['POSTPROCESSING_HOOKS'] = [
'django_project_base.router.postprocess_rest_documentation'
SPECTACULAR_DEFAULTS["POSTPROCESSING_HOOKS"] = [
"django_project_base.router.postprocess_rest_documentation"
]

urlpatterns = [
path('jsi18n/', JavaScriptCatalog.as_view(), name='javascript-catalog'),
re_path('browser-update/js-script', browser_update_script, name='browser-update-script'),
re_path(r'', include(django_project_base_router.urls)),
path("jsi18n/", JavaScriptCatalog.as_view(), name="javascript-catalog"),
re_path(
"browser-update/js-script", browser_update_script, name="browser-update-script"
),
re_path(r"", include(django_project_base_router.urls)),
]

0 comments on commit 511963d

Please sign in to comment.