finalize 3.3 release

pull/12/head 3.3
Yax 2 years ago
parent c9238330e2
commit 60f2d58076

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

File diff suppressed because it is too large Load Diff

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

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

Loading…
Cancel
Save