Skip to content

Commit 53fc737

Browse files
gfyoungjreback
authored andcommitted
MAINT: Remove vestigial nose usages (#317)
1 parent 756eb41 commit 53fc737

File tree

3 files changed

+1
-16
lines changed

3 files changed

+1
-16
lines changed

conda.recipe/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ test:
5555

5656
# requires:
5757
# Put any additional test requirements here. For example
58-
# - nose
58+
# - pytest
5959

6060
about:
6161
home: https://github.com/pydata/pandas-datareader

pandas_datareader/io/tests/test_jsdmx.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,3 @@ def test_land_use(self):
6565
2485000, 27.166, 1990747, 21.763]])
6666
expected = pd.DataFrame(values, index=exp_idx, columns=exp_col)
6767
tm.assert_frame_equal(result, expected)
68-
69-
70-
if __name__ == '__main__':
71-
import nose
72-
nose.runmodule(argv=[__file__, '-vvs', '-x', '--pdb', '--pdb-failure'], exit=False)

pandas_datareader/io/tests/test_sdmx.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,6 @@
1313
class TestSDMX(tm.TestCase):
1414

1515
def setUp(self):
16-
17-
if sys.version_info < (2, 7, 0):
18-
import nose
19-
raise nose.SkipTest("Doesn't support Python 2.6 because of ElementTree incompat")
20-
2116
self.dirpath = tm.get_data_path()
2217

2318
def test_tourism(self):
@@ -42,8 +37,3 @@ def test_tourism(self):
4237
[25.49, np.nan, 39.05, np.nan]])
4338
expected = pd.DataFrame(values, index=exp_idx, columns=exp_col)
4439
tm.assert_frame_equal(df, expected)
45-
46-
47-
if __name__ == '__main__':
48-
import nose
49-
nose.runmodule(argv=[__file__, '-vvs', '-x', '--pdb', '--pdb-failure'], exit=False)

0 commit comments

Comments
 (0)