finalize 3.3 release

This commit is contained in:
Yax 2022-12-03 19:02:24 +01:00
parent c9238330e2
commit 60f2d58076
4 changed files with 44 additions and 6294 deletions

View file

@ -9,7 +9,7 @@ test:
poetry run coverage report poetry run coverage report
typehint: typehint:
poetry run mypy --ignore-missing-imports stacosys/ poetry run mypy --ignore-missing-imports stacosys/ tests/
lint: lint:
poetry run pylint stacosys/ poetry run pylint stacosys/

File diff suppressed because it is too large Load diff

View file

@ -52,7 +52,5 @@ class Rss:
lastBuildDate=datetime.now(), lastBuildDate=datetime.now(),
items=items, items=items,
) )
# TODO technical debt: replace pyRss2Gen
# TODO validate feed (https://validator.w3.org/feed/check.cgi)
# pylint: disable=consider-using-with # pylint: disable=consider-using-with
rss.write_xml(open(self._rss_file, "w", encoding="utf-8"), encoding="utf-8") rss.write_xml(open(self._rss_file, "w", encoding="utf-8"), encoding="utf-8")

View file

@ -2,6 +2,7 @@
# -*- coding: UTF-8 -*- # -*- coding: UTF-8 -*-
import time import time
import pytest import pytest
from stacosys.db import dao, database from stacosys.db import dao, database