diff --git a/tests/table/test_select.py b/tests/table/test_select.py index 12dfce29..05061479 100644 --- a/tests/table/test_select.py +++ b/tests/table/test_select.py @@ -1028,6 +1028,10 @@ def test_select_raw(self): response, [{"name": "Pythonistas", "popularity_log": 3.0}] ) + @pytest.mark.skipif( + is_running_sqlite(), + reason="SQLite doesn't support SELECT .. FOR UPDATE.", + ) def test_for_update(self): """ Make sure the for_update clause works.