Fixes in tests

This commit is contained in:
Antonio de la Rosa 2024-06-01 00:37:27 +02:00
parent 07b0577d91
commit d91b85dfa0
4 changed files with 12 additions and 2 deletions

View file

@ -1,9 +1,14 @@
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "paramecio2" name = "paramecio2"
version = "2.0.36" version = "2.0.36"
description = "Simple Web Framework based in flask and Mako." description = "Simple Web Framework based in flask and Mako."
readme = "README.md" readme = "README.md"
license = {file = "LICENSE.txt"} license = {file = "LICENSE.txt"}
maintainers = [{name = "Antonio de la Rosa", email = "antonio.delarosa@salirdelhoyo.com"}] authors = [{name = "Antonio de la Rosa", email = "antonio.delarosa@salirdelhoyo.com"}]
classifiers=['Development Status :: 4 - Beta', classifiers=['Development Status :: 4 - Beta',
"Intended Audience :: Developers", "Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3", "License :: OSI Approved :: GNU Affero General Public License v3",
@ -24,7 +29,7 @@ install_requires=[
"flask", "flask",
"pymysql", "pymysql",
"sqlalchemy", "sqlalchemy",
"coloram"', "coloram",
"python-slugify", "python-slugify",
"mako", "mako",
"pillow", "pillow",
@ -40,3 +45,8 @@ Source = "https://git.cuchulu.com/paramecio/paramecio2fm/"
paramecio2 = "paramecio2.console:start" paramecio2 = "paramecio2.console:start"
paramecio2db = "parmecio2.libraries.db.dbadmin:start" paramecio2db = "parmecio2.libraries.db.dbadmin:start"
[tool.pytest.ini_options]
testpaths = ["tests"]
filterwarnings = [
"error",
]