We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a56b502 + 538ee04 commit 8fe94eeCopy full SHA for 8fe94ee
1 file changed
.travis.yml
@@ -8,13 +8,16 @@ before_install:
8
- pip install --upgrade setuptools
9
10
# command to install dependencies
11
-install:
+install:
12
+ - pip install coveralls
13
+ - pip install coverage
14
- python bootstrap.py
15
- bin/buildout
16
17
# command to run tests
18
script:
- PATH=$PATH:./etcd/bin bin/test
19
+ PATH=$PATH:./etcd/bin coverage run --source=src/etcd --omit="src/etcd/tests/*" bin/test
20
21
+after_success: coveralls
22
# Add env var to detect it during build
23
env: TRAVIS=True
0 commit comments