Skip to content

Commit

Permalink
Converted test_MinHeap tests to unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nbro committed Jan 1, 2017
1 parent d83d388 commit bd45c66
Show file tree
Hide file tree
Showing 3 changed files with 430 additions and 496 deletions.
5 changes: 3 additions & 2 deletions run.sh
@@ -1,5 +1,8 @@
#!/usr/bin/env bash

# RUN SPECIFIC TEST
# ./run.sh -st folder_name_inside_tests test_name.py

# colors used when printing
GREEN=$(tput setaf 2)
RED=$(tput setaf 1)
Expand Down Expand Up @@ -86,8 +89,6 @@ install_dependencies()
printf "${GREEN}Done.${NORMAL}\n\n"
}

# Syntax to invoke the run of a specific test:
# ./run.sh -st folder_name_inside_tests test_name.py
test_in_virtual_environment()
{
# Creates and switches to the new virtual environment
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Expand Up @@ -4,7 +4,6 @@
"""
## Resources
- [https://packaging.python.org/en/latest/distributing/#readme-rst](https://packaging.python.org/en/latest/distributing/#readme-rst)
- [https://packaging.python.org/en/latest/distributing/#readme-rst](https://packaging.python.org/en/latest/distributing/#readme-rst)
- [http://docs.python-guide.org/en/latest/writing/structure/](http://docs.python-guide.org/en/latest/writing/structure/)
"""

Expand All @@ -26,7 +25,7 @@ def read(file_name):
description="Algorithms and Data Structures",
long_description=read("README.md"),
license="MIT",
keywords="algorithms data structures",
keywords="algorithms data structures python",
url="https://github.com/nbro/ands",
include_package_data=True,
exclude_package_data={'': ['__pycache__']},
Expand Down

0 comments on commit bd45c66

Please sign in to comment.