We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11181a0 commit 53ff7c1Copy full SHA for 53ff7c1
.travis.yml
@@ -8,11 +8,13 @@ env:
8
- TMUX_VERSION=master
9
- TMUX_VERSION=1.8
10
before_install:
11
- - sudo apt-get update -qq
+ - apt-get update -qq
12
+ - export PIP_USE_MIRRORS=true
13
+ - pip install coveralls
14
install:
15
- "pip install -e ."
16
before_script:
- - sudo apt-get install -qq libevent-dev libncurses-dev
17
+ - apt-get install -qq libevent-dev libncurses-dev
18
- git clone git://git.code.sf.net/p/tmux/tmux-code tmux
19
- cd tmux
20
- git checkout $TMUX_VERSION
@@ -21,3 +23,5 @@ before_script:
21
23
- cd ..
22
24
- tmux -V
25
script: python setup.py test
26
+after_success:
27
+ - coveralls
0 commit comments