Skip to content
This repository has been archived by the owner on Oct 8, 2020. It is now read-only.

Commit

Permalink
Merge branch 'master' into github-actions
Browse files Browse the repository at this point in the history
* master:
  Switch from Coveralls to CodeCov. (#216)
  TrailingHashDevice test frequently times out. Give it more time. (#217)
  • Loading branch information
scouten committed Nov 14, 2019
2 parents b7e10d9 + 9328f7f commit 26b7d60
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,12 @@ env:
script:
- mix deps.get
- mix format --check-formatted
- mix coveralls.travis
- mix coveralls.json
- mix credo

after_success:
- bash <(curl -s https://codecov.io/bash)

branches:
only:
- master
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Pure Elixir native implementation of git

[![Build Status](https://travis-ci.org/elixir-git/xgit.svg?branch=master)](https://travis-ci.org/elixir-git/xgit)
[![Coverage Status](https://coveralls.io/repos/github/elixir-git/xgit/badge.svg?branch=master)](https://coveralls.io/github/elixir-git/xgit?branch=master)
[![Code Coverage](https://codecov.io/gh/elixir-git/xgit/branch/master/graph/badge.svg)](https://codecov.io/gh/elixir-git/xgit)
[![Hex version](https://img.shields.io/hexpm/v/xgit.svg)](https://hex.pm/packages/xgit)
[![API Docs](https://img.shields.io/badge/hexdocs-release-blue.svg)](https://hexdocs.pm/xgit)
[![License badge](https://img.shields.io/hexpm/l/xgit.svg)](https://github.com/elixir-git/xgit/blob/master/LICENSE)
Expand Down
2 changes: 1 addition & 1 deletion test/xgit/util/trailing_hash_device_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ defmodule Xgit.Util.TrailingHashDeviceTest do

assert capture_log(fn ->
send(device, :random_unknown_message)
Process.sleep(10)
Process.sleep(100)
# Give time for message to land.
end) =~ "TrailingHashDevice received unexpected message :random_unknown_message"
end
Expand Down

0 comments on commit 26b7d60

Please sign in to comment.