Changeset - 291526f4ad05
[Not reviewed]
0 2 2
Branko Majic (branko) - 6 years ago 2018-02-26 11:06:22
branko@majic.rs
GC-2: Added coverage configuration and updated manifest file:

- Include only the actual module files in the coverage reporting.
- Addd comments to gitignore file.
- Updated gitignore file to exclude test artefacts.
- Updated manifest file to include documentation files, as well as
test configuration file.
- Added pytest configuration file that ensures coverage plugin is
enabled and that report is stored in html format in the coverage
directory.
4 files changed with 18 insertions and 2 deletions:
0 comments (0 inline, 0 general)
.coveragerc
Show inline comments
 
new file 100644
 
[run]
 
include = gimmecert/*
 
\ No newline at end of file
.gitignore
Show inline comments
 
@@ -10,4 +10,8 @@ dist/
 
.eggs/
 
.pytest_cache/
 
__pycache__/
 
*.egg-info/
 
\ No newline at end of file
 
*.egg-info/
 

	
 
# Ignore test artefacts.
 
.coverage
 
coverage/
 
\ No newline at end of file
MANIFEST.in
Show inline comments
 
# Licensing informaiton.
 
include LICENSE-*
 
recursive-include docs *.rst
 
\ No newline at end of file
 

	
 
# Documentation source.
 
recursive-include docs *.rst
 

	
 
# Test configuration files.
 
include pytest.ini
 
include tox.ini
 
include .coveragerc
pytest.ini
Show inline comments
 
new file 100644
 
[pytest]
 
addopts = --cov --cov-report=html:coverage
 
\ No newline at end of file
0 comments (0 inline, 0 general)