add pytest-html

This commit is contained in:
sommersoft 2022-03-23 14:15:50 -05:00
parent 495c5abf31
commit 28e4833b4e
2 changed files with 24 additions and 1 deletions

View File

@ -44,6 +44,13 @@ jobs:
py310-dj32-postgres-xdist-coverage py39-dj32-postgres-xdist-coverage py310-dj32-postgres-xdist-coverage py39-dj32-postgres-xdist-coverage
py35-dj22-postgres-pytest54-coverage pypy3-dj22-postgres py35-dj22-postgres-pytest54-coverage pypy3-dj22-postgres
- name: "pytest-html"
repo: "pytest-dev/pytest-html"
docker_profile: "nodb"
jobs: "test_python"
workflow_name: "tests.yml"
matrix_exclude: ""
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
with: with:

View File

@ -9,10 +9,26 @@
"prefix": "py", "prefix": "py",
"sub": "sub":
{ {
"pattern": "\\-coverage$", "pattern": "-coverage$",
"replace": "" "replace": ""
} }
}, },
"python_version": "python" "python_version": "python"
},
"pytest-html": {
"matrix": [
"matrix",
"include"
],
"tox_cmd_build": {
"base": "name",
"prefix": "py",
"sub":
{
"pattern": "(py\\d+)-\\w+",
"replace": "\\1"
}
},
"python_version": "python"
} }
} }