Skip to content

Commit

Permalink
adding CI automation
Browse files Browse the repository at this point in the history
  • Loading branch information
lockefox committed Mar 31, 2018
1 parent 505af5c commit d3a8a1a
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[report]
omit =
prosper/test_utils/_version.py
prosper/test_utils/__init__.py
prosper/test_utils/exceptions.py


[paths]
source = prosper/test_utils
1 change: 1 addition & 0 deletions .coveralls.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
parallel: true
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ wheels/
*.egg-info/
.installed.cfg
*.egg
venv*/

# PyInstaller
# Usually these files are written by a python script from a template
Expand Down Expand Up @@ -99,3 +100,9 @@ ENV/

# mypy
.mypy_cache/

#untracked paths
logs/
cache/
# mypy
.mypy_cache/
12 changes: 12 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
language: python
python:
- "3.5"
- "3.6"
- "3.6-dev" # 3.6 development branch
install:
- "pip install ."
script:
- "python setup.py test"
after_success:
- "pip install python-coveralls"
- "coveralls"

0 comments on commit d3a8a1a

Please sign in to comment.