Skip to content

Commit 3602281

Browse files
committed
Revert the windows-2019 test
1 parent 73a3e39 commit 3602281

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
matrix:
100100
python-version: [3.11]
101101
node-version: [latest]
102-
os: [windows-2019]
102+
os: [windows-latest]
103103
runs-on: ${{ matrix.os }}
104104
steps:
105105
- uses: actions/checkout@v4

tests/test_SecretsSpec.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ def test_withASCII():
2020
)
2121

2222

23-
# @pytest.mark.skipif(
24-
# sys.platform.startswith("win"), reason="Windows defaults to CP-1252"
25-
# )
23+
@pytest.mark.skipif(
24+
sys.platform.startswith("win"), reason="Windows defaults to CP-1252"
25+
)
2626
def test_with_UTF8():
2727
key = "¥ · £ · € · $ · ¢ · ₡ · ₢ · ₣ · ₤ · ₥ · ₦ · ₧ · ₨ · ₩ · ₪ · ₫ · ₭ · ₮ · ₯ · ₹"
2828
expected = "\xa5 \xb7 \xa3 \xb7 \u20ac \xb7 $ \xb7 \xa2 \xb7 \u20a1 \xb7 \u20a2 \xb7 \u20a3 \xb7 \u20a4 \xb7 \u20a5 \xb7 \u20a6 \xb7 \u20a7 \xb7 \u20a8 \xb7 \u20a9 \xb7 \u20aa \xb7 \u20ab \xb7 \u20ad \xb7 \u20ae \xb7 \u20af \xb7 \u20b9"

0 commit comments

Comments
 (0)