From 7e049654c66e5079f0ea18f3fc28c580a29be0ed Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Mon, 6 Feb 2023 17:05:23 -0800 Subject: [PATCH] No need to skip this test any more, refs #47 --- tests/test_redact.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/test_redact.py b/tests/test_redact.py index cf92e4b..91a55fc 100644 --- a/tests/test_redact.py +++ b/tests/test_redact.py @@ -1,15 +1,10 @@ import pytest import sqlite_utils from sqlite_utils.db import ForeignKey -import sys from .shared import all_databases -# This test was failing in CI on 3.9 and higher, I couldn't figure out why: -@pytest.mark.skipif( - sys.version_info > (3, 8), reason="https://github.com/simonw/db-to-sqlite/issues/47" -) @all_databases def test_redact(connection, tmpdir, cli_runner): db_path = str(tmpdir / "test_redact.db")