Skip to content
This repository was archived by the owner on Apr 14, 2024. It is now read-only.

Commit 6f71b8a

Browse files
committed
Fixed .travis file to allow tests to work correctly.
Previously, submodules were not initalized, which could have had an effect ... . Even though it shouldn't, but lets just try it.
1 parent 232cf20 commit 6f71b8a

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.travis.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,11 @@ python:
66
- "3.4"
77
# - "pypy" - won't work as smmap doesn't work (see smmap/.travis.yml for details)
88

9-
script: nosetests
9+
install:
10+
- git submodule update --init --recursive
11+
- pip install coveralls
12+
script:
13+
- nosetests
14+
after_success:
15+
- coveralls
16+

0 commit comments

Comments
 (0)