Skip to content

Commit

Permalink
Support Python 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ikegami-yukino committed Nov 23, 2014
1 parent 77aae90 commit fd76221
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
compiler:
- clang
install:
Expand Down
7 changes: 3 additions & 4 deletions test_shellinford.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
from nose.tools import assert_equal, assert_true
from nose.tools import assert_equal, assert_true, nottest
import shellinford
from shellinford.shellinford import SEARCH_RESULT
import tempfile
Expand Down Expand Up @@ -201,7 +201,6 @@ def test_head(self):
bwt = shellinford.bwt()
assert_equal(bwt.head, 0)

@nottest
def test_get(self):
bwt = shellinford.bwt()
bwt.build('01234')
assert_equal(bwt.get(0), '4')
pass

0 comments on commit fd76221

Please sign in to comment.