5
5
from janitor .finance import _inflate_currency , inflate_currency # noqa: F401
6
6
7
7
8
+ @pytest .mark .xfail (reason = "Relies on external API call." )
8
9
@pytest .mark .finance
9
10
def test_make_currency_inflator_api_request ():
10
11
"""Test for currency inflator API request.
@@ -20,6 +21,7 @@ def test_make_currency_inflator_api_request():
20
21
assert r .status_code == 200
21
22
22
23
24
+ @pytest .mark .xfail (reason = "Relies on external API call." )
23
25
@pytest .mark .finance
24
26
def test_make_new_inflated_currency_col (dataframe ):
25
27
"""Test currency inflation for same year added as a new column."""
@@ -33,6 +35,7 @@ def test_make_new_inflated_currency_col(dataframe):
33
35
assert all (df ["a" ] == df ["a_2018" ])
34
36
35
37
38
+ @pytest .mark .xfail (reason = "Relies on external API call." )
36
39
@pytest .mark .finance
37
40
def test_inflate_existing_currency_col (dataframe ):
38
41
"""Test currency inflation updates existing column."""
@@ -50,6 +53,7 @@ def test_inflate_existing_currency_col(dataframe):
50
53
assert (initialval * inflator ) == pytest .approx (updatedval )
51
54
52
55
56
+ @pytest .mark .xfail (reason = "Relies on external API call." )
53
57
@pytest .mark .finance
54
58
def test_expected_result (dataframe ):
55
59
"""Test inflation calculation gives expected value."""
@@ -67,6 +71,7 @@ def test_expected_result(dataframe):
67
71
assert (initialval * inflator ) == pytest .approx (updatedval )
68
72
69
73
74
+ @pytest .mark .xfail (reason = "Relies on external API call." )
70
75
@pytest .mark .finance
71
76
def test_expected_result_with_full_country_name (dataframe ):
72
77
"""Test inflation calculation works when providing country name."""
@@ -86,6 +91,7 @@ def test_expected_result_with_full_country_name(dataframe):
86
91
assert (initialval * inflator ) == pytest .approx (updatedval )
87
92
88
93
94
+ @pytest .mark .xfail (reason = "Relies on external API call." )
89
95
@pytest .mark .finance
90
96
def test_wb_country_check (dataframe ):
91
97
"""Test inflation calculation fails when providing invalid country name."""
@@ -95,6 +101,7 @@ def test_wb_country_check(dataframe):
95
101
)
96
102
97
103
104
+ @pytest .mark .xfail (reason = "Relies on external API call." )
98
105
@pytest .mark .finance
99
106
def test_year_check (dataframe ):
100
107
"""Test inflation calculation fails with year outside valid range."""
@@ -104,6 +111,7 @@ def test_year_check(dataframe):
104
111
)
105
112
106
113
114
+ @pytest .mark .xfail (reason = "Relies on external API call." )
107
115
@pytest .mark .finance
108
116
def test_datatypes_check (dataframe ):
109
117
"""Test inflation calculation fails when provided invalid types."""
@@ -119,6 +127,7 @@ def test_datatypes_check(dataframe):
119
127
)
120
128
121
129
130
+ @pytest .mark .xfail (reason = "Relies on external API call." )
122
131
@pytest .mark .finance
123
132
def test_api_result_check (dataframe ):
124
133
"""Test inflation calculation fails with year outside API's valid range."""
@@ -128,6 +137,7 @@ def test_api_result_check(dataframe):
128
137
)
129
138
130
139
140
+ @pytest .mark .xfail (reason = "Relies on external API call." )
131
141
@pytest .mark .finance
132
142
def test_to_year_available (dataframe ):
133
143
"""Test inflation calculation fails with unavailable to_year."""
@@ -137,6 +147,7 @@ def test_to_year_available(dataframe):
137
147
)
138
148
139
149
150
+ @pytest .mark .xfail (reason = "Relies on external API call." )
140
151
@pytest .mark .finance
141
152
def test_currency_year_available (dataframe ):
142
153
"""Test inflation calculation fails with unavailable currency_year."""
0 commit comments