Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gvalkov committed Sep 22, 2014
1 parent ca5bb65 commit 427522e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
install: python setup.py install
script: make test
script: py.test
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[pytest]
norecursedirs = test-output test-repos
norecursedirs = test-output test-repos .tox

[wheel]
universal = 1
2 changes: 1 addition & 1 deletion tests/test_git.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

@pytest.fixture
def repo(request):
repo = Repo('%s/../' % here, '%s/test-git' % test_repo_dir)
repo = Repo('https://github.com/gvalkov/git-link.git', '%s/test-git' % test_repo_dir, 'HEAD')
repo.clone()
repo.chdir()
return repo
Expand Down
2 changes: 1 addition & 1 deletion tests/test_github.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
'https://github.com/gvalkov/rsstail.py/tree/8c30df6/tests'),
]

url = 'git@github.com:gvalkov/rsstail.py.git'
url = 'https://github.com/gvalkov/rsstail.py.git'
linkurl = 'https://github.com/gvalkov/rsstail.py'
headrev = '790cc8cde0ef6c06443ee14c11ff7b1c6d3f22f4'

Expand Down

0 comments on commit 427522e

Please sign in to comment.