Skip to content

Commit

Permalink
🚧 Adds commented tests as skipped
Browse files Browse the repository at this point in the history
  • Loading branch information
guyzmo committed May 2, 2017
1 parent 866bedf commit 9f38561
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions tests/integration/test_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -516,12 +516,13 @@ def test_open__no_repo_slug__https(self):
assert ('guyzmo', 'git-repo') == repo_slug
assert {} == seen_args

# Commented out because this does not work on travis CI
# def test_open__no_repo_slug__git(self):
# self._create_repository()
# repo_slug, seen_args = self.main_open(rc=0)
# assert ('guyzmo', 'git-repo') == repo_slug
# assert {} == seen_args
# Skipped because this does not work on travis CI
@pytest.mark.skip
def test_open__no_repo_slug__git(self):
self._create_repository()
repo_slug, seen_args = self.main_open(rc=0)
assert ('guyzmo', 'git-repo') == repo_slug
assert {} == seen_args

def test_create__no_repo_slug(self):
self._create_repository(ro=True)
Expand Down

0 comments on commit 9f38561

Please sign in to comment.