Skip to content

Commit

Permalink
Merge pull request #2 from patdaburu/working
Browse files Browse the repository at this point in the history
Fixed .readthedocs.yml.
  • Loading branch information
patdaburu committed Mar 25, 2018
2 parents c975e8e + 6adc57a commit 4a0c47f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ build:
image: latest

python:
version: 0.0.1
version: 3.6
setup_py_install: true

conda:
Expand Down
7 changes: 6 additions & 1 deletion tests/test_events.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ class TestClass1(object):

@event
def event1(self, s: str):
pass
"""
Describe what the event does.
:param s: gimme a string
"""


class TestSuite(unittest.TestCase):
Expand All @@ -39,6 +43,7 @@ def another(s: str):




if __name__ == '__main__':
unittest.main()

0 comments on commit 4a0c47f

Please sign in to comment.