Skip to content

Commit

Permalink
.gitignoreに.travis.ymlを追加し、Pythonのテスト仕様を記述
Browse files Browse the repository at this point in the history
  • Loading branch information
alice1017 committed Sep 12, 2018
1 parent 663f3f1 commit 5ab5c11
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@
!*.enc
!*.md
!*.py
!.travis.yml
11 changes: 11 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
language: python

python:
- 2.7

install:
- pip install coverage

script:
- coverage run tools/update-repository/setup.py test
- coverage report

0 comments on commit 5ab5c11

Please sign in to comment.