Skip to content

Commit 2941d18

Browse files
committed
Merge remote-tracking branch 'origin/gherkin-official-parser' into gherkin-official-parser
2 parents 0a77782 + d11096f commit 2941d18

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- python-version: "3.13-dev"
3535
toxfactor: py3.13
3636
ignore-typecheck-outcome: true
37-
ignore-test-outcome: false
37+
ignore-test-outcome: true
3838

3939
steps:
4040
- uses: actions/checkout@v3
@@ -81,10 +81,10 @@ jobs:
8181
coverage combine
8282
coverage xml
8383
84-
- uses: codecov/codecov-action@v3
84+
- uses: codecov/codecov-action@v4
8585
with:
8686
# Explicitly using the token to avoid Codecov rate limit errors
8787
# See https://community.codecov.com/t/upload-issues-unable-to-locate-build-via-github-actions-api/3954
8888
token: ${{ secrets.CODECOV_TOKEN }}
89-
fail_ci_if_error: true
89+
fail_ci_if_error: false
9090
verbose: true # optional (default = false)

tests/feature/test_tags.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ def _():
157157
)
158158
result = pytester.runpytest("-rsx")
159159
result.stdout.fnmatch_lines(["SKIP*: Not implemented yet"])
160-
result.stdout.fnmatch_lines(["*= 1 skipped, 1 xpassed * =*"])
160+
result.stdout.fnmatch_lines(["*= 1 skipped, 1 xpassed*=*"])
161161

162162

163163
def test_at_in_scenario(pytester):

0 commit comments

Comments
 (0)