Skip to content

Commit

Permalink
Merge pull request #2 from paypay/feature/testcases
Browse files Browse the repository at this point in the history
Add travis-ci and coveralls configuration
  • Loading branch information
Shreyansh Pandey committed Aug 4, 2020
2 parents c814650 + 9a4d71c commit e74606a
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 2 deletions.
27 changes: 27 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
language: python

matrix:
include:
- python: "3.4"
- python: "3.5"
- python: "3.6"
- python: "3.7"
- python: "3.8"
- python: "3.9-dev"
allow_failures:
- python: "3.9-dev"

install:
- pip install pytest
- pip install responses
- pip install pytest-cov
- pip install coveralls
- pip install requests
- pip install pyjwt
- pip install uuid

script:
- pytest --cov=tests/

after_success:
- coveralls
4 changes: 2 additions & 2 deletions tests/README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Paypay OPA SDK Test Cases

## Install pip package
## Install pytest
```sh
$ pip install pytest
```

## Install pip package
## Install unittest
```sh
$ pip install unittest
```
Expand Down

0 comments on commit e74606a

Please sign in to comment.