File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
crates/feedparser-rs-py/tests Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -190,6 +190,7 @@ jobs:
190190
191191 - name : Install wheel
192192 working-directory : crates/feedparser-rs-py
193+ shell : bash
193194 run : uv pip install --system dist/*.whl
194195
195196 - name : Run Python tests
@@ -323,6 +324,7 @@ jobs:
323324
324325 - name : Install wheel
325326 working-directory : crates/feedparser-rs-py
327+ shell : bash
326328 run : uv pip install --system dist/*.whl
327329
328330 - name : Run tests with coverage
Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ def test_parse_with_limits_exceeded():
149149 max_feed_size_bytes = 10 , # Too small
150150 )
151151
152- with pytest .raises (ValueError , match = "Resource limit exceeded " ):
152+ with pytest .raises (ValueError , match = "exceeds maximum " ):
153153 feedparser_rs .parse_with_limits (xml , limits )
154154
155155
You can’t perform that action at this time.
0 commit comments