File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,3 +3,4 @@ branch = True
33omit =
44 tqdm/tests/*
55 tqdm/_tqdm_gui.py
6+ tqdm/_tqdm_notebook.py
Original file line number Diff line number Diff line change 11sudo : false
22language : python
33python : 3.5
4+ notifications :
5+ email : false
46# branches: # remove travis double-check on pull requests in main repo
57# only:
68# - master
1618 - TOXENV=flake8
1719 - TOXENV=perf
1820before_install :
21+ - wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
22+ - chmod +x miniconda.sh
23+ - ./miniconda.sh -b -p /home/travis/miniconda
24+ - export PATH=/home/travis/miniconda/bin:$PATH
25+ - conda update --yes conda
26+ # The next couple lines fix a crash with multiprocessing on Travis and are not specific to using Miniconda
27+ # - sudo rm -rf /dev/shm
28+ # - sudo ln -s /run/shm /dev/shm
29+ # - conda install --yes python=$TRAVIS_PYTHON_VERSION codecov
1930 - pip install codecov
2031install :
21- - pip install 'coverage<4'
22- - pip install tox coveralls
32+ - conda install --yes python=$TRAVIS_PYTHON_VERSION numpy pandas
33+ # - conda install --yes python=$TRAVIS_PYTHON_VERSION 'coverage<4' coveralls
34+ - pip install tox 'coverage<4' coveralls
35+ # Coverage packages from dan_blanchard binstar channel?
36+ # - conda install --yes -c dan_blanchard python-coveralls nose-cov
37+ - python setup.py install
38+ # run tests
2339script :
2440 - tox
41+ # submit coverage
2542after_success :
2643 - coveralls
2744 - codecov
Original file line number Diff line number Diff line change @@ -277,10 +277,10 @@ def test_all_defaults():
277277 for _ in progressbar :
278278 pass
279279 # restore stdout/stderr output for `nosetest` interface
280- try :
281- sys .stderr .write ('\x1b [A' )
282- except :
283- pass
280+ # try:
281+ # sys.stderr.write('\x1b[A')
282+ # except:
283+ # pass
284284 sys .stderr .write ('\r Test default kwargs ... ' )
285285
286286
You can’t perform that action at this time.
0 commit comments