finalize 3.3 release
This commit is contained in:
parent
c9238330e2
commit
60f2d58076
4 changed files with 44 additions and 6294 deletions
2
Makefile
2
Makefile
|
@ -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
|
@ -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")
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue