Skip to content

Commit

Permalink
Add config files
Browse files Browse the repository at this point in the history
  • Loading branch information
crd committed Aug 22, 2018
1 parent 214583b commit c0f1602
Show file tree
Hide file tree
Showing 5 changed files with 116 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[run]
source = .
omit = setup.py,tests/*,faker_credit_score/__version__.py
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
language: python
python:
- "3.6"
install:
- "make"
script:
- make test
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
init:
pip install pipenv
pipenv install --dev

test:
pipenv run python -m unittest tests/test_faker_credit_score.py
13 changes: 13 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]

[dev-packages]
coverage = "*"
faker = "*"

[requires]
python_version = "3.6"
87 changes: 87 additions & 0 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c0f1602

Please sign in to comment.