Skip to content

Commit a5c5a62

Browse files
committed
TST: Move more tests to stable
More more tests to stable
1 parent e2dc3dd commit a5c5a62

File tree

4 files changed

+11
-0
lines changed

4 files changed

+11
-0
lines changed

pandas_datareader/tests/test_econdb.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
import pandas as pd
33
import pandas.util.testing as tm
44
import pandas_datareader.data as web
5+
import pytest
6+
7+
pytestmark = pytest.mark.stable
58

69

710
class TestEcondb(object):

pandas_datareader/tests/test_eurostat.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,14 @@
22
import pandas as pd
33
import pandas.util.testing as tm
44
import pandas_datareader.data as web
5+
import pytest
56

67
from pandas_datareader.compat import assert_raises_regex
78

89

10+
pytestmark = pytest.mark.stable
11+
12+
913
class TestEurostat(object):
1014

1115
def test_get_ert_h_eur_a(self):

pandas_datareader/tests/test_moex.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
from requests.exceptions import HTTPError
44
import pandas_datareader.data as web
55

6+
pytestmark = pytest.mark.stable
7+
68

79
class TestMoex(object):
810
def test_moex_datareader(self):

pandas_datareader/tests/yahoo/test_yahoo.py

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

1616
XFAIL_REASON = 'Known connection failures on Yahoo when testing!'
1717

18+
pytestmark = pytest.mark.stable
19+
1820

1921
class TestYahoo(object):
2022

0 commit comments

Comments
 (0)