Skip to content

Commit d140445

Browse files
committed
remove nose imports
1 parent 32984fe commit d140445

File tree

6 files changed

+0
-12
lines changed

6 files changed

+0
-12
lines changed

tests/base.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33

44
import pyexcel
55

6-
from nose.tools import eq_, raises # noqa
7-
86

97
def create_sample_file1(file):
108
data = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", 1.1, 1]

tests/test_filter.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
from pyexcel_io import get_data, save_data
44

5-
from nose.tools import eq_
6-
75

86
class TestFilter:
97
def setup_method(self):

tests/test_formatters.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33

44
import pyexcel as pe
55

6-
from nose.tools import eq_
7-
86

97
class TestDateFormat:
108
def test_reading_date_format(self):

tests/test_hidden.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
from pyexcel_xls import get_data
44

5-
from nose.tools import eq_
6-
75

86
def test_simple_hidden_sheets():
97
data = get_data(

tests/test_merged_cells.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
from pyexcel_xls import get_data
44
from pyexcel_xls.xlsr import MergedCell
55

6-
from nose.tools import eq_
7-
86

97
def test_merged_cells():
108
data = get_data(

tests/test_stringio.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
import pyexcel
44
from base import create_sample_file1
55

6-
from nose.tools import eq_
7-
86

97
class TestStringIO:
108
def test_xls_stringio(self):

0 commit comments

Comments
 (0)