diff --git a/requirements.txt b/requirements.txt index c85fc345..d5fa61f3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,23 +1,23 @@ aniso8601==10.0.1 async-timeout==5.0.1 -attrs==25.4.0 -black==26.1.0 +attrs==26.1.0 +black==26.3.1 blinker==1.9.0 cachelib==0.13.0 -certifi==2026.1.4 -charset-normalizer==3.4.4 +certifi==2026.2.25 +charset-normalizer==3.4.7 click==8.3.1 -coverage==7.13.1 +coverage==7.13.5 Deprecated==1.3.1 flake8==7.3.0 -Flask==3.1.2 +Flask==3.1.3 Flask-Caching==2.3.1 flask-cors==6.0.2 Flask-Limiter==4.1.1 -flask-marshmallow==1.3.0 +flask-marshmallow==1.4.0 flask-restx==1.3.2 Flask-SQLAlchemy==3.1.1 -greenlet==3.3.0 +greenlet==3.3.2 idna==3.11 importlib_resources==6.5.2 iniconfig==2.3.0 @@ -25,37 +25,37 @@ itsdangerous==2.2.0 Jinja2==3.1.6 jsonschema==4.26.0 jsonschema-specifications==2025.9.1 -limits==5.6.0 +limits==5.8.0 markdown-it-py==4.0.0 MarkupSafe==3.0.3 -marshmallow==4.2.0 +marshmallow==4.2.4 mccabe==0.7.0 mdurl==0.1.2 mypy_extensions==1.1.0 -mysqlclient==2.2.7 +mysqlclient==2.2.8 ordered-set==4.1.0 packaging==26.0 -pathspec==1.0.3 -platformdirs==4.5.1 +pathspec==1.0.4 +platformdirs==4.9.4 pluggy==1.6.0 pycodestyle==2.14.0 pyflakes==3.4.0 -Pygments==2.19.2 +Pygments==2.20.0 pyrsistent==0.20.0 pytest==9.0.2 python-dateutil==2.9.0.post0 -pytokens==0.4.0 -pytz==2025.2 -redis==7.1.0 +pytokens==0.4.1 +pytz==2026.1.post1 +redis==7.4.0 referencing==0.37.0 -requests==2.32.5 -rich==14.2.0 +requests==2.33.1 +rich==14.3.3 rpds-py==0.30.0 -setuptools==80.10.1 +setuptools==82.0.1 six==1.17.0 -SQLAlchemy==2.0.46 +SQLAlchemy==2.0.48 typing_extensions==4.15.0 urllib3==2.6.3 -Werkzeug==3.1.5 -wheel==0.45.1 -wrapt==2.0.1 +Werkzeug==3.1.8 +wheel==0.46.3 +wrapt==2.1.2 diff --git a/tests/resources/test_proxy.py b/tests/resources/test_proxy.py index aca80e58..dc20f194 100644 --- a/tests/resources/test_proxy.py +++ b/tests/resources/test_proxy.py @@ -1,9 +1,10 @@ from api import app from json import load -from unittest import TestCase +import unittest -class TestIntegrations(TestCase): +@unittest.skip("External") +class TestIntegrations(unittest.TestCase): def setUp(self): self.app_client = app.test_client() diff --git a/tests/resources/test_thalemine.py b/tests/resources/test_thalemine.py index a040b312..63cecc5f 100644 --- a/tests/resources/test_thalemine.py +++ b/tests/resources/test_thalemine.py @@ -1,9 +1,10 @@ from api import app from json import load -from unittest import TestCase +import unittest -class TestIntegrations(TestCase): +@unittest.skip("Blocked") +class TestIntegrations(unittest.TestCase): def setUp(self): self.app_client = app.test_client()