Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Template dir option #1

Open
wants to merge 62 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
62 commits
Select commit Hold shift + click to select a range
fa22767
Add --template-dir option to README
frankwiles Mar 2, 2023
0660ef0
Add to other file
frankwiles Mar 2, 2023
94bdb0a
Add --template-dir argument
frankwiles Mar 12, 2023
c60e2bb
Fix typo
frankwiles Mar 12, 2023
688ff27
Finish --template-dir option
frankwiles Mar 12, 2023
6f6d3e8
Merge branch 'gcovr:master' into template-dir-option
frankwiles Mar 12, 2023
faa5965
Add useful docs for --template-dir
frankwiles Mar 28, 2023
af1edc5
Add thread information to logging (#752)
Spacetown Mar 16, 2023
e00cd62
Fix nested report if only one directory in root is present. (#750)
Spacetown Mar 19, 2023
35d5e44
Add interface to writer modules (#755)
Spacetown Mar 29, 2023
480fb4c
Add --html-template-dir argument
frankwiles Mar 12, 2023
29dec36
Finish --html-template-dir option
frankwiles Mar 12, 2023
fe44fa5
Resolve merge issue and refactor
frankwiles Apr 4, 2023
4be8b21
Fix merge and refactor to new output layout
frankwiles Apr 4, 2023
491164e
Add Frank Wiles to AUTHORS.txt
frankwiles Apr 4, 2023
f331f6d
Use Jinja2 ChoiceLoader
frankwiles Apr 4, 2023
78a8c28
Update documentation to reflect ChoiceLoader
frankwiles Apr 7, 2023
1e3aa04
Merge fixes
frankwiles Apr 7, 2023
9b68ca0
Fix docs typo
frankwiles Apr 7, 2023
bcb27da
Fix README typo
frankwiles Apr 7, 2023
4f15328
Remove merge mistake
frankwiles Apr 7, 2023
700693a
Update CHANGELOG
frankwiles Apr 7, 2023
b31b11f
Add --html-template-dir test
frankwiles Apr 10, 2023
3e106f5
Change what we're testing on --html-template-dir
frankwiles Apr 14, 2023
00fe6c5
Fix test again
frankwiles Apr 14, 2023
3403f41
Merge branch 'master' into template-dir-option
frankwiles Apr 14, 2023
90e735c
Merge master with conflict fixes
frankwiles Apr 24, 2023
0bc43f6
Improve template-dir option docs
frankwiles Apr 24, 2023
328dae3
Merge fix
frankwiles Apr 24, 2023
3b8fc8d
Improve template-dir docs
frankwiles Apr 24, 2023
3657f15
Add tests to ensure templates are overridden
frankwiles Apr 24, 2023
fd8e8e7
Remove debugging print
frankwiles Apr 24, 2023
9b1d9ee
Add template test
frankwiles Apr 26, 2023
2e7cc8d
Forgot to save Makefile change
frankwiles Apr 26, 2023
cd4da16
Respect absolute paths from gcov output. (#776)
Spacetown May 1, 2023
c0c49b9
Add tests for latest gcc (#780)
Spacetown May 6, 2023
ddc6930
Add nox session for compiler familiy (#782)
Spacetown May 7, 2023
f158c98
Do not add pygments CSS if provided by user CSS (#786)
Spacetown May 18, 2023
f768367
Add support for Devcontainer and GitHub Codespaces. (#771)
Spacetown May 20, 2023
d8871de
Ignore exit code 6 from gcov execution (#781)
Spacetown May 24, 2023
d31273a
📚🩹 Fix wrong command in 'How to create a standalone application' docs…
s-weigand Jun 3, 2023
d502177
Update failing HTML/CSS comparison
frankwiles Jun 5, 2023
eb4332a
Fix cobertura zero branch rate (#796)
Spacetown Jun 14, 2023
49fcaa6
Fix Dockerfile.qa to avoid uid conflicts (#801)
mfont-bz17 Jul 26, 2023
27e6b3a
pygments required >= 2.13.0 (#799)
mfont-bz17 Jul 26, 2023
2563829
Fix substed working dir on windows (#814)
Spacetown Jul 30, 2023
d5a60fc
Update documentation option --branch (#815)
Spacetown Jul 30, 2023
2dff1ff
Add flag to ignore source not found error (#787)
Spacetown Jul 31, 2023
c5a304c
Hotfix for test
Spacetown Jul 31, 2023
b7858fc
Fix reading config files (#816)
Spacetown Aug 2, 2023
ed68b51
Add html theme for GitHub style (#793)
mfont-bz17 Aug 3, 2023
9042a79
Update gcovr/tests/test_html_generator.py
frankwiles Aug 4, 2023
aff4fb9
Fix linting issue
frankwiles Jun 9, 2023
4e05e45
Remove test that behaves oddly in CI
frankwiles Aug 4, 2023
9b1b1ef
Merge branch 'master' into template-dir-option
frankwiles Aug 4, 2023
df9ca3e
Add option for decision and function threshold (#773)
Spacetown Aug 4, 2023
e6fc434
Fix type error in decision analysis (#784)
genossefloyd Aug 6, 2023
c9237fb
Fix CI run
Spacetown Aug 11, 2023
72b6a04
Merge branch 'master' into template-dir-option
Spacetown Aug 11, 2023
af5d559
Update documentation
Spacetown Aug 11, 2023
d2124bc
Update reference data
Spacetown Aug 11, 2023
ce1c125
Fix documentation error
Spacetown Aug 11, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove debugging print
  • Loading branch information
frankwiles committed Apr 24, 2023
commit fd8e8e7c38164bc0bb6c3c0aa39cf5f5fcda3324
1 change: 0 additions & 1 deletion gcovr/formats/html/write.py
Original file line number Diff line number Diff line change
@@ -84,7 +84,6 @@ def templates(options):
PackageLoader("gcovr.formats.html"),
]
)
print("IN LOADER")

return Environment(
loader=loader,