We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f3ed92 commit 2f9b34cCopy full SHA for 2f9b34c
.travis.yml
@@ -7,5 +7,5 @@ install:
7
- pip install flake8
8
script:
9
- flake8 homu
10
- - cd homu
11
- - python -m unittest
+ - pip install -e .
+ - python setup.py test
homu/tests/__init__.py
homu/test_parse_issue_comment.py renamed to homu/tests/test_parse_issue_comment.py
@@ -1,5 +1,5 @@
1
import unittest
2
-from parse_issue_comment import parse_issue_comment
+from homu.parse_issue_comment import parse_issue_comment
3
4
# Random commit number. Just so that we don't need to come up with a new one
5
# for every test.
setup.py
@@ -5,6 +5,7 @@
version='0.3.0',
6
author='Barosl Lee',
url='https://github.com/barosl/homu',
+ test_suite='homu.tests',
description=('A bot that integrates with GitHub '
'and your favorite continuous integration service'),
0 commit comments