Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ venv/
ENV/
env.bak/
venv.bak/
venv*/

# Spyder project settings
.spyderproject
Expand All @@ -102,6 +103,3 @@ venv.bak/

# mypy
.mypy_cache/

# My venv
ga/
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,6 @@ install:
- pip install -r requirements_dev.txt
- pip install -e .
script:
- pytest
- pytest --cov=notebookc
after_success:
- coveralls
1 change: 0 additions & 1 deletion notebookc/notebookc.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,4 @@ def convert(my_name):
if not isinstance(my_name, str):
raise TypeError("Please provide a string argument.")


print(f"I'll convert a notebook for you some day, {my_name}.")
2 changes: 2 additions & 0 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@ pip==19.0.3
wheel==0.33.0
twine==1.13.0
pytest==4.3.0
pytest-cov==2.6.1
coveralls==1.6.0