-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update gcovr to 7.2+really-1.1 (#2)
Signed-off-by: lhdjply <[email protected]>
- Loading branch information
Showing
3,263 changed files
with
415,356 additions
and
149,543 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,4 +21,5 @@ | |
!gcovr/tests | ||
|
||
# always ignore these files | ||
**/__pycache__ | ||
**/*.pyc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Declare that the script files will always have LF line endings on checkout. | ||
# Otherwise using cygwin and WSL to execute these will fail if checkout is done on Windows. | ||
*.sh text eol=lf | ||
*.csv text eol=crlf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,49 @@ | ||
.pc/ | ||
*.py[cod] | ||
|
||
# Packages | ||
*.egg | ||
*.egg-info | ||
dist | ||
build | ||
eggs | ||
parts | ||
bin | ||
var | ||
sdist | ||
develop-eggs | ||
.installed.cfg | ||
lib | ||
lib64 | ||
|
||
# Installer logs | ||
pip-log.txt | ||
|
||
# wheel | ||
gcovr-*/ | ||
|
||
# nox | ||
.nox*/ | ||
|
||
# coverage report | ||
.coverage | ||
coverage.xml | ||
# temporary generated files | ||
.coverage.* | ||
|
||
# Translations | ||
*.mo | ||
|
||
# Mr Developer | ||
.mr.developer.cfg | ||
.project | ||
.pydevproject | ||
|
||
# MacOS | ||
.DS_Store | ||
|
||
# VS Code workspace | ||
*.code-workspace | ||
|
||
# PyCharm | ||
.idea | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
# .readthedocs.yaml | ||
# Read the Docs configuration file | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
|
||
# Required | ||
version: 2 | ||
|
||
# Set the version of Python and other tools you might need | ||
build: | ||
os: ubuntu-22.04 | ||
tools: | ||
python: "3.11" | ||
|
||
# Build documentation in the docs/ directory with Sphinx | ||
sphinx: | ||
configuration: doc/source/conf.py | ||
|
||
# Optionally build your docs in additional formats such as PDF and ePub | ||
formats: | ||
- epub | ||
|
||
# We recommend specifying your dependencies to enable reproducible builds: | ||
# https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html | ||
python: | ||
install: | ||
- requirements: doc/requirements.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "2.0.0", | ||
"inputs": [ | ||
{ | ||
"id": "Compiler", | ||
"description": "The compiler to run the tests for", | ||
"type": "pickString", | ||
"options": [ | ||
"gcc-5", | ||
"gcc-6", | ||
"gcc-8", | ||
"gcc-9", | ||
"gcc-10", | ||
"gcc-11", | ||
"clang-10", | ||
"clang-13", | ||
"clang-14", | ||
"clang-15" | ||
] | ||
} | ||
], | ||
"tasks": [ | ||
{ | ||
"label": "Run quality checks", | ||
"type": "shell", | ||
"command": "nox --reuse-existing-virtualenvs $(if [ -n \"${env:NOX_ENV_DIR}\" ] ; then echo \"--envdir ${env:NOX_ENV_DIR}\" ; fi) -s qa", | ||
"group": "build" | ||
}, | ||
{ | ||
"label": "Run lint", | ||
"type": "shell", | ||
"command": "nox --reuse-existing-virtualenvs $(if [ -n \"${env:NOX_ENV_DIR}\" ] ; then echo \"--envdir ${env:NOX_ENV_DIR}\" ; fi) -s lint", | ||
"group": "build" | ||
}, | ||
{ | ||
"label": "Run black", | ||
"type": "shell", | ||
"command": "nox --reuse-existing-virtualenvs $(if [ -n \"${env:NOX_ENV_DIR}\" ] ; then echo \"--envdir ${env:NOX_ENV_DIR}\" ; fi) -s black", | ||
"group": "build" | ||
}, | ||
{ | ||
"label": "Run flake8", | ||
"type": "shell", | ||
"command": "nox --reuse-existing-virtualenvs $(if [ -n \"${env:NOX_ENV_DIR}\" ] ; then echo \"--envdir ${env:NOX_ENV_DIR}\" ; fi) -s flake8", | ||
"group": "build" | ||
}, | ||
{ | ||
"label": "Run documentation generation", | ||
"type": "shell", | ||
"command": "nox --reuse-existing-virtualenvs $(if [ -n \"${env:NOX_ENV_DIR}\" ] ; then echo \"--envdir ${env:NOX_ENV_DIR}\" ; fi) -s doc", | ||
"group": "build" | ||
}, | ||
{ | ||
"label": "Run tests", | ||
"type": "shell", | ||
"command": "nox --reuse-existing-virtualenvs $(if [ -n \"${env:NOX_ENV_DIR}\" ] ; then echo \"--envdir ${env:NOX_ENV_DIR}\" ; fi) -s tests", | ||
"group": "build" | ||
}, | ||
{ | ||
"label": "Build wheel", | ||
"type": "shell", | ||
"command": "nox --reuse-existing-virtualenvs $(if [ -n \"${env:NOX_ENV_DIR}\" ] ; then echo \"--envdir ${env:NOX_ENV_DIR}\" ; fi) -s build_wheel", | ||
"group": "build" | ||
}, | ||
{ | ||
"label": "Check wheel", | ||
"type": "shell", | ||
"command": "nox --reuse-existing-virtualenvs $(if [ -n \"${env:NOX_ENV_DIR}\" ] ; then echo \"--envdir ${env:NOX_ENV_DIR}\" ; fi) -s check_wheel", | ||
"group": "build" | ||
}, | ||
{ | ||
"label": "Build and check standalone application", | ||
"type": "shell", | ||
"command": "nox --reuse-existing-virtualenvs $(if [ -n \"${env:NOX_ENV_DIR}\" ] ; then echo \"--envdir ${env:NOX_ENV_DIR}\" ; fi) -s bundle_app", | ||
"group": "build" | ||
}, | ||
{ | ||
"label": "Format current file", | ||
"type": "shell", | ||
"command": "nox --reuse-existing-virtualenvs $(if [ -n \"${env:NOX_ENV_DIR}\" ] ; then echo \"--envdir ${env:NOX_ENV_DIR}\" ; fi) -s black -- ${file}", | ||
"group": "build" | ||
}, | ||
{ | ||
"label": "Run tests for specific compiler", | ||
"type": "shell", | ||
"command": "nox -s 'docker_qa_compiler(${input:Compiler})' -- -k simple1-txt", | ||
"group": "build" | ||
}, | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.