Skip to content

Commit

Permalink
Changes to successfully get coverage report pt6
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreMacedo88 committed Jun 9, 2020
1 parent 3410bd3 commit 23eb434
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
[run]
include = VEnCode/internals.py
omit =
*/docs/*
*/Files/*
*/scripts/*
*/tests/*
*/utils/*
*/*a.py
VEnCode/*a.py
VEnCode/internals_extensions.py
VEnCode/__init__.py
VEnCode/common_variables.py
VEnCode/process.py
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ install:
script:
- pytest VEnCode/tests/ --cov=VEnCode
after_success:
- coveralls --include VEnCode/internals.py
- coveralls
2 changes: 1 addition & 1 deletion VEnCode/tests/test_extensions.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ def setUp(self):
""" Sets-up variables to be used in the tests. """
self.validate_with = outside_data.Bed(source="get_val_ven_test.bed", files_path=self.files_path,
folder="Validation_files")
self.vencode_obj = iext.GetVencodes(validate_with=(self.validate_with, (":", "\..", ",")),
self.vencode_obj = iext.GetVencodes(validate_with=(self.validate_with, (":", r"\..", ",")),
inputs=self.inputs,
files_path=self.files_path,
cell_type=self.celltype_analyse,
Expand Down

0 comments on commit 23eb434

Please sign in to comment.