From e024a88533eaeb0d6645706bc4e00aaf1c53ba80 Mon Sep 17 00:00:00 2001 From: David Barnett Date: Sat, 24 Aug 2024 17:26:52 -0600 Subject: [PATCH] (WIP) Re-enable Windows unicode tests (and TODO: fix them) --- .github/workflows/tests.yml | 2 +- tests/test_gcalcli.py | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3c775ec..e45efc5 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -2,7 +2,7 @@ name: Tests (tox) on: push: - branches: [master] + branches: [master, win32_unicode] pull_request: branches: [master] diff --git a/tests/test_gcalcli.py b/tests/test_gcalcli.py index 7d51d95..39447d5 100644 --- a/tests/test_gcalcli.py +++ b/tests/test_gcalcli.py @@ -6,7 +6,6 @@ from json import load import re -import pytest from dateutil.tz import tzutc from gcalcli.argparsers import ( @@ -274,9 +273,6 @@ def test_modify_event(PatchedGCalI): gcal._edit_event, opts.text, opts.start, opts.end) == 0 -@pytest.mark.skipif( - os.name == 'nt', - reason='Known unicode encode/decode issue, see insanum/gcalcli#387.') def test_import(PatchedGCalI): cal_names = parse_cal_names(['jcrowgey@uw.edu']) gcal = PatchedGCalI(cal_names=cal_names, default_reminders=True)