Skip to content

Commit

Permalink
Merge pull request #14 from robertjkeck2/async
Browse files Browse the repository at this point in the history
Async Functionality & Object-Oriented Representation
  • Loading branch information
avinassh committed May 13, 2018
2 parents a1b039d + f129a66 commit 658ac14
Show file tree
Hide file tree
Showing 23 changed files with 768 additions and 116 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -18,6 +18,7 @@ develop-eggs
lib
lib64
__pycache__
.pytest_cache/

# Installer logs
pip-log.txt
Expand Down
11 changes: 5 additions & 6 deletions .travis.yml
@@ -1,13 +1,12 @@
language: python
python:
- 2.7
- 3.3
- 3.4
- 3.6
install:
- pip install -r requirements.txt
- pip install pytest==2.7.2 pytest-sugar==0.4.0 pytest-pep8==1.0.6 pytest-cov==1.8.1
- pip install coveralls==0.5
- pip install pytest==3.5.1 pytest-sugar==0.9.1 pytest-pep8==1.0.6 pytest-cov==2.5.1 pytest-asyncio==0.8.0
- pip install coveralls==1.3.0
script:
py.test tests --doctest-modules --pep8 -v --cov-report term-missing --cov=hackernews
- py.test tests --doctest-modules --pep8 -v --cov-report term-missing --cov=hackernews
- py.test hackernews --pep8
after_success:
coveralls

0 comments on commit 658ac14

Please sign in to comment.