-
Notifications
You must be signed in to change notification settings - Fork 312
Increased code coverage #95
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
Merged
Merged
Changes from all commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
cde1601
improved tests
iamrajiv 3789a66
imported raises
iamrajiv d10f50b
improved raises
iamrajiv f82517d
increased coverage in adjacency_matrix.py
iamrajiv c9a5682
increased coverage in adjacency_matrix.py
iamrajiv 569daa2
increased coverage in adjacency_matrix.py
iamrajiv efeaeb8
increased coverage in adjacency_matrix.py
iamrajiv 268c4e0
increased coverage in adjacency_matrix.py
iamrajiv 72e9536
increased coverage in adjacency_matrix.py
iamrajiv 384809d
increased coverage in queue
iamrajiv 3822500
increased coverage in adjacency_matrix.py
iamrajiv 526c45d
removed adjacencylist from global namespace
iamrajiv 5aae92b
improved coverage in heaps.py
iamrajiv 9887a24
improved coverage in heaps.py
iamrajiv 92c82ec
reverted code in heaps.py
iamrajiv 22b566c
improved coverage in binary trees
iamrajiv 9f2612a
improved coverage in binary trees
iamrajiv 33af38f
improved coverage in binary trees
iamrajiv 25dba7c
improved coverage in binary trees
iamrajiv 170f71a
improved coverage in binary trees
iamrajiv ab07685
improved coverage in binary trees
iamrajiv a180cb2
improved coverage in binary trees
iamrajiv 2491551
improved coverage in binary trees
iamrajiv ba6e7d3
improved coverage in binary trees
iamrajiv 76b9a2a
added .coveragerc and improved coverage
iamrajiv 7bc77a7
removed unwanted codes
iamrajiv f2066fa
removed unwanted codes
iamrajiv 936a680
removed unwanted codes
iamrajiv 33e023f
merged coveragerc_travis in .coveragerc
iamrajiv 119ffbf
removed unwanted files
iamrajiv 3ab9560
updated .gitignore
iamrajiv 65b09a2
updated .gitignore
iamrajiv d2458b9
deleted unwanted files
iamrajiv File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,11 @@ | ||
[run] | ||
parallel = True | ||
source = pydatastructs | ||
omit = | ||
*/tests/* | ||
|
||
[report] | ||
exclude_lines = | ||
pragma: no cover | ||
|
||
raise NotImplementedError |
This file contains hidden or 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,12 +1,60 @@ | ||
*.swp | ||
*.pyc | ||
__pycache__/ | ||
*.pyo | ||
*.vs | ||
.vs/ | ||
.vscode/ | ||
.pytest_cache/ | ||
# Compiled source # | ||
################### | ||
*.com | ||
*.class | ||
*.dll | ||
*.exe | ||
*.o | ||
*.so | ||
*.gch | ||
|
||
# Packages # | ||
############ | ||
# it's better to unpack these files and commit the raw source | ||
# git has its own built in compression methods | ||
*.7z | ||
*.dmg | ||
*.gz | ||
*.iso | ||
*.jar | ||
*.rar | ||
*.tar | ||
*.zip | ||
|
||
# Logs and databases # | ||
###################### | ||
*.log | ||
*.sql | ||
*.sqlite | ||
|
||
# OS generated files # | ||
###################### | ||
.DS_Store | ||
.DS_Store? | ||
._* | ||
.Spotlight-V100 | ||
.Trashes | ||
ehthumbs.db | ||
Thumbs.db | ||
pre_commit.ps1 | ||
czgdp1807 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
htmlcov | ||
*coverage* | ||
*.egg-info/ | ||
czgdp1807 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
# Python Files # | ||
################ | ||
*.pyc | ||
*.pyo | ||
*~ | ||
__pycache__/ | ||
.pytest_cache/ | ||
|
||
# Backup Files # | ||
################ | ||
*.bak | ||
*.swp | ||
|
||
# Editor Files # | ||
################ | ||
.vscode/ | ||
.vs/ |
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.