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

Increased code coverage #95

Merged
merged 33 commits into from
Mar 2, 2020
Merged
Show file tree
Hide file tree
Changes from 31 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
cde1601
improved tests
iamrajiv Feb 23, 2020
3789a66
imported raises
iamrajiv Feb 23, 2020
d10f50b
improved raises
iamrajiv Feb 23, 2020
f82517d
increased coverage in adjacency_matrix.py
iamrajiv Feb 23, 2020
c9a5682
increased coverage in adjacency_matrix.py
iamrajiv Feb 23, 2020
569daa2
increased coverage in adjacency_matrix.py
iamrajiv Feb 23, 2020
efeaeb8
increased coverage in adjacency_matrix.py
iamrajiv Feb 23, 2020
268c4e0
increased coverage in adjacency_matrix.py
iamrajiv Feb 23, 2020
72e9536
increased coverage in adjacency_matrix.py
iamrajiv Feb 23, 2020
384809d
increased coverage in queue
iamrajiv Feb 23, 2020
3822500
increased coverage in adjacency_matrix.py
iamrajiv Feb 23, 2020
526c45d
removed adjacencylist from global namespace
iamrajiv Feb 23, 2020
5aae92b
improved coverage in heaps.py
iamrajiv Feb 23, 2020
9887a24
improved coverage in heaps.py
iamrajiv Feb 23, 2020
92c82ec
reverted code in heaps.py
iamrajiv Feb 23, 2020
22b566c
improved coverage in binary trees
iamrajiv Feb 23, 2020
9f2612a
improved coverage in binary trees
iamrajiv Feb 23, 2020
33af38f
improved coverage in binary trees
iamrajiv Feb 23, 2020
25dba7c
improved coverage in binary trees
iamrajiv Feb 23, 2020
170f71a
improved coverage in binary trees
iamrajiv Feb 23, 2020
ab07685
improved coverage in binary trees
iamrajiv Feb 23, 2020
a180cb2
improved coverage in binary trees
iamrajiv Feb 23, 2020
2491551
improved coverage in binary trees
iamrajiv Feb 23, 2020
ba6e7d3
improved coverage in binary trees
iamrajiv Feb 23, 2020
76b9a2a
added .coveragerc and improved coverage
iamrajiv Feb 24, 2020
7bc77a7
removed unwanted codes
iamrajiv Feb 24, 2020
f2066fa
removed unwanted codes
iamrajiv Feb 24, 2020
936a680
removed unwanted codes
iamrajiv Feb 24, 2020
33e023f
merged coveragerc_travis in .coveragerc
iamrajiv Feb 24, 2020
119ffbf
removed unwanted files
iamrajiv Feb 25, 2020
3ab9560
updated .gitignore
iamrajiv Feb 25, 2020
65b09a2
updated .gitignore
iamrajiv Feb 25, 2020
d2458b9
deleted unwanted files
iamrajiv Feb 25, 2020
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
11 changes: 11 additions & 0 deletions .coveragerc
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
61 changes: 52 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,55 @@
*.swp
# 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

# Python Files #
################
*.pyc
__pycache__/
*.pyo
*.vs
.vs/
*~
__pycache__/

# Backup Files #
################
*.bak
*.swp

# Editor Files #
################
.vscode/
.pytest_cache/
czgdp1807 marked this conversation as resolved.
Show resolved Hide resolved
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
.vs/
5 changes: 0 additions & 5 deletions coveragerc_travis

This file was deleted.

6 changes: 0 additions & 6 deletions pydatastructs/graphs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,3 @@
Graph
)
__all__.extend(graph.__all__)

from . import adjacency_list
from .adjacency_list import (
AdjacencyList
)
__all__.extend(adjacency_list.__all__)
Binary file added pydatastructs/trees/tests/.DS_Store
Binary file not shown.