Skip to content

Commit 3fe9f9c

Browse files
authored
Infra-updates (#1194)
1 parent eced641 commit 3fe9f9c

File tree

3 files changed

+30
-1
lines changed

3 files changed

+30
-1
lines changed

.devcontainer/devcontainer.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@
3333
"ms-python.python",
3434
"ms-python.vscode-pylance",
3535
"ms-vsliveshare.vsliveshare-pack",
36-
"arcticicestudio.nord-visual-studio-code"
36+
"arcticicestudio.nord-visual-studio-code",
37+
"ms-vsliveshare.vsliveshare",
38+
"ms-vsliveshare.vsliveshare-audio"
3739
],
3840
// Use 'forwardPorts' to make a list of ports inside the container available locally.
3941
"forwardPorts": [

.github/workflows/auto-update.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# This workflow automatically updates PR branches with latest changes on target branch.
2+
# See: https://github.com/marketplace/actions/auto-update
3+
name: autoupdate
4+
on:
5+
# This will trigger on all pushes to all branches.
6+
push:
7+
branches: [dev]
8+
jobs:
9+
autoupdate:
10+
name: autoupdate
11+
runs-on: ubuntu-20.04
12+
steps:
13+
- uses: docker://chinthakagodawita/autoupdate-action:v1
14+
env:
15+
GITHUB_TOKEN: "${{ secrets.GHPAGES_TOKEN }}"
16+
PR_READY_STATE: "ready_for_review"

tests/finance/test_inflate_currency.py

+11
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
from janitor.finance import _inflate_currency, inflate_currency # noqa: F401
66

77

8+
@pytest.mark.xfail(reason="Relies on external API call.")
89
@pytest.mark.finance
910
def test_make_currency_inflator_api_request():
1011
"""Test for currency inflator API request.
@@ -20,6 +21,7 @@ def test_make_currency_inflator_api_request():
2021
assert r.status_code == 200
2122

2223

24+
@pytest.mark.xfail(reason="Relies on external API call.")
2325
@pytest.mark.finance
2426
def test_make_new_inflated_currency_col(dataframe):
2527
"""Test currency inflation for same year added as a new column."""
@@ -33,6 +35,7 @@ def test_make_new_inflated_currency_col(dataframe):
3335
assert all(df["a"] == df["a_2018"])
3436

3537

38+
@pytest.mark.xfail(reason="Relies on external API call.")
3639
@pytest.mark.finance
3740
def test_inflate_existing_currency_col(dataframe):
3841
"""Test currency inflation updates existing column."""
@@ -50,6 +53,7 @@ def test_inflate_existing_currency_col(dataframe):
5053
assert (initialval * inflator) == pytest.approx(updatedval)
5154

5255

56+
@pytest.mark.xfail(reason="Relies on external API call.")
5357
@pytest.mark.finance
5458
def test_expected_result(dataframe):
5559
"""Test inflation calculation gives expected value."""
@@ -67,6 +71,7 @@ def test_expected_result(dataframe):
6771
assert (initialval * inflator) == pytest.approx(updatedval)
6872

6973

74+
@pytest.mark.xfail(reason="Relies on external API call.")
7075
@pytest.mark.finance
7176
def test_expected_result_with_full_country_name(dataframe):
7277
"""Test inflation calculation works when providing country name."""
@@ -86,6 +91,7 @@ def test_expected_result_with_full_country_name(dataframe):
8691
assert (initialval * inflator) == pytest.approx(updatedval)
8792

8893

94+
@pytest.mark.xfail(reason="Relies on external API call.")
8995
@pytest.mark.finance
9096
def test_wb_country_check(dataframe):
9197
"""Test inflation calculation fails when providing invalid country name."""
@@ -95,6 +101,7 @@ def test_wb_country_check(dataframe):
95101
)
96102

97103

104+
@pytest.mark.xfail(reason="Relies on external API call.")
98105
@pytest.mark.finance
99106
def test_year_check(dataframe):
100107
"""Test inflation calculation fails with year outside valid range."""
@@ -104,6 +111,7 @@ def test_year_check(dataframe):
104111
)
105112

106113

114+
@pytest.mark.xfail(reason="Relies on external API call.")
107115
@pytest.mark.finance
108116
def test_datatypes_check(dataframe):
109117
"""Test inflation calculation fails when provided invalid types."""
@@ -119,6 +127,7 @@ def test_datatypes_check(dataframe):
119127
)
120128

121129

130+
@pytest.mark.xfail(reason="Relies on external API call.")
122131
@pytest.mark.finance
123132
def test_api_result_check(dataframe):
124133
"""Test inflation calculation fails with year outside API's valid range."""
@@ -128,6 +137,7 @@ def test_api_result_check(dataframe):
128137
)
129138

130139

140+
@pytest.mark.xfail(reason="Relies on external API call.")
131141
@pytest.mark.finance
132142
def test_to_year_available(dataframe):
133143
"""Test inflation calculation fails with unavailable to_year."""
@@ -137,6 +147,7 @@ def test_to_year_available(dataframe):
137147
)
138148

139149

150+
@pytest.mark.xfail(reason="Relies on external API call.")
140151
@pytest.mark.finance
141152
def test_currency_year_available(dataframe):
142153
"""Test inflation calculation fails with unavailable currency_year."""

0 commit comments

Comments
 (0)