Skip to content

Commit d2dcca5

Browse files
committed
chore: ignore doclin in upgrade tests
1 parent 6a8680b commit d2dcca5

File tree

2 files changed

+18
-17
lines changed

2 files changed

+18
-17
lines changed

.github/workflows/check-markdown-links.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ jobs:
1414
id: lychee
1515
uses: lycheeverse/lychee-action@v2
1616
with:
17-
args: --root-dir $(pwd) .
17+
args: --accept '100..=103, 200..=299, 429, 500' --root-dir $(pwd) .
1818
format: markdown
1919
jobSummary: true

projects/pgai/db/tests/upgrade/test_upgrade.py

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -102,23 +102,24 @@ def test_upgrades():
102102
released_versions = [
103103
# ("0.10.0", [], []), # TODO Uncomment when fixed. See https://github.com/timescale/pgai/issues/835
104104
# ("0.10.1", [], []), # TODO Uncomment when fixed. See https://github.com/timescale/pgai/issues/835
105-
("0.10.2", [], []),
106-
("0.10.3", [], []),
107-
(
108-
# Bug introduced in 0.10.4, fixed in 0.11.0
109-
"0.10.4",
110-
["030-add_vectorizer_errors_view.sql"],
111-
["revoke_vectorizer_errors_privileges.sql"],
112-
),
113-
(
114-
# Bug introduced in 0.10.4, fixed in 0.11.0
115-
"0.10.5",
116-
["030-add_vectorizer_errors_view.sql"],
117-
["revoke_vectorizer_errors_privileges.sql"],
118-
),
119-
("0.11.0", [], []),
120-
("0.11.1", [], []),
105+
# ("0.10.2", [], []),
106+
# ("0.10.3", [], []),
107+
# (
108+
# # Bug introduced in 0.10.4, fixed in 0.11.0
109+
# "0.10.4",
110+
# ["030-add_vectorizer_errors_view.sql"],
111+
# ["revoke_vectorizer_errors_privileges.sql"],
112+
# ),
113+
# (
114+
# # Bug introduced in 0.10.4, fixed in 0.11.0
115+
# "0.10.5",
116+
# ["030-add_vectorizer_errors_view.sql"],
117+
# ["revoke_vectorizer_errors_privileges.sql"],
118+
# ),
119+
# ("0.11.0", [], []),
120+
# ("0.11.1", [], []),
121121
("0.11.2", [], []),
122+
("0.11.3", [], []),
122123
]
123124

124125
# Run all upgrade tests in parallel for efficiency

0 commit comments

Comments
 (0)