Skip to content

Commit

Permalink
Mark hglib requiring test as skipif rather than xfail
Browse files Browse the repository at this point in the history
  • Loading branch information
pv committed Jun 28, 2015
1 parent 7a6a536 commit b3e718d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_repo.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ def test_repo_git(tmpdir):
_test_branches(conf, branch_commits)


@pytest.mark.xfail(hglib is None,
reason="needs hglib")
@pytest.mark.skipif(hglib is None,
reason="needs hglib")
def test_repo_hg(tmpdir):
tmpdir = six.text_type(tmpdir)

Expand Down

0 comments on commit b3e718d

Please sign in to comment.