Skip to content
Snippets Groups Projects
Commit fd0bf49b authored by thomaswoehlke's avatar thomaswoehlke
Browse files

working for 0.0.198 Release

parent 10319d63
No related branches found
No related tags found
No related merge requests found
......@@ -8,15 +8,11 @@ dtale>=1.34.0
Flask>=1.1.2
Flask-SQLAlchemy>=2.4.4
Flask-Cors>=3.0.10
Flask-BS4==4.5.3.0
Flask-BS4>=4.5.3.0,<5.0.0.0
SQLAlchemy>=1.3.23
psycopg2>=2.8.6
wget>=3.2
celery[redis]>=5.0.5
Flask-PluginKit
Flask-ResponseBuilder
plantuml-creator
plantuml-markdown
flask-resources==0.6.0
Flask-PluginKit>=3.6.0
Flask-ResponseBuilder>=2.0.12
......
pytoml
pytest==5.3.2
pytest-runner==5.3.0
pytest-flask
pytest-flask-sqlalchemy
pytest-mock
pytest-celery
blinker
greenlet
python-dotenv
pytest-flask
test-flask
unittest2>=1.0.0
extras>=1.0.0
fixtures>=1.3.0
python-mimeparse
pytoml
......@@ -64,7 +64,10 @@ requires_test = [
"python-dotenv==0.15.0",
"test-flask==0.2.0",
"wcwidth==0.2.5",
"werkzeug==1.0.1"
"werkzeug==1.0.1",
"pytest_celery>=0.0.0a1",
"pytest-flask-sqlalchemy-1.0.2",
"pytest-mock-3.5.1"
]
requires_docs = [
......
......@@ -3,6 +3,8 @@ import tempfile
import pytest
from database import create_app, create_db_test, create_admin
pytest_plugins = ("celery.contrib.pytest", )
@pytest.fixture
def app():
......
......@@ -5,6 +5,7 @@ import covid19_worker
from covid19 import app
from covid19.blueprints.application.application_workers import celery, run_mq
# Celery: https://docs.celeryproject.org/en/stable/userguide/index.html
# ---------------------------------------------------------------------------------
# MAIN
......
......@@ -4,6 +4,22 @@ import covid19.blueprints.application.application_views
from covid19 import run_web
# https://realpython.com/pytest-python-testing/
# https://www.guru99.com/pytest-tutorial.html
#
#
# https://docs.pytest.org/en/stable/
# https://www.jetbrains.com/help/pycharm/pytest.html
# https://docs.celeryproject.org/en/stable/userguide/testing.html
#
# https://werkzeug.palletsprojects.com/en/1.0.x/test/#werkzeug.test.Client
# https://flask.palletsprojects.com/en/1.1.x/testing/
# https://flask.palletsprojects.com/en/1.1.x/tutorial/tests/
#
# https://flask.palletsprojects.com/en/1.1.x/tutorial/install/
# https://packaging.python.org/tutorials/packaging-projects/
# ---------------------------------------------------------------------------------
# MAIN
# ---------------------------------------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment