Skip to content

Commit

Permalink
try to merge coverage results
Browse files Browse the repository at this point in the history
  • Loading branch information
jedie committed Feb 8, 2016
1 parent f8c9622 commit 3f3c0e6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
7 changes: 5 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,17 @@ before_install:
- echo ${TRAVIS_PYTHON_VERSION}

install:
- pip install coveralls nose
- pip install coveralls appveyor-artifacts nose
- pip install -e .

script:
- coverage run --source=pathlib_revised -m nose -v

after_success:
- ls
- ls -la
- mv .coverage .coverage.travis
- appveyor-artifacts -im --verbose download
- ls -la
- coverage combine
- coverage report
- coveralls
Expand Down
8 changes: 6 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,16 @@ install:
test_script:
- coverage run --source=pathlib_revised -m nose -v

artifacts:
- path: .coverage

on_finish:
- coverage combine
- coverage report
- ls -la

- set COVERALLS_REPO_TOKEN=JkT1M1GpIxJxA5GmDIm5Sk4br38hP5Bn1
- coveralls
# - set COVERALLS_REPO_TOKEN=JkT1M1GpIxJxA5GmDIm5Sk4br38hP5Bn1
# - coveralls

# http://www.appveyor.com/docs/how-to/rdp-to-build-worker
#- ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))

0 comments on commit 3f3c0e6

Please sign in to comment.