SIENTIAPDE-1646

Update project configuration and dependencies

- Added .mypy_cache and .cursor to .gitignore.
- Changed asyncio_default_fixture_loop_scope and asyncio_default_test_loop_scope to "session" in pyproject.toml.
- Updated e2e testing dependencies in requirements-dev.txt, replacing fakeredis and mongomock with pytest-httpserver.
- Updated requirements.txt to use sientia_do instead of a specific git commit.
- Modified sonar-project.properties to remove a file from coverage exclusions.
- Enhanced E2E test fixtures in e2e/conftest.py for better container management.
- Cleaned up e2e test files related to CoreScouter and PIWebAPIScouter workflows.
This commit is contained in:
vitor-aignosi
2026-05-25 12:58:03 -03:00
parent 909ad25b63
commit 34dbc886f3
65 changed files with 2591 additions and 2849 deletions

View File

@@ -282,7 +282,7 @@
" j = i - pace\n",
" print(f'Getting data for chunk -{i} to -{j} days')\n",
" try:\n",
" chunk = DataFrame(await api.get_tag_values(\n",
" chunk = DataFrame(api.get_tag_values(\n",
" input_data={\n",
" 'endpoint': '/streamsets/recorded',\n",
" 'web_ids': web_ids,\n",
@@ -294,7 +294,7 @@
" }\n",
" ))\n",
" except Exception as e:\n",
" chunk = DataFrame(await api.get_tag_values(\n",
" chunk = DataFrame(api.get_tag_values(\n",
" input_data={\n",
" 'endpoint': '/streamsets/recorded',\n",
" 'web_ids': web_ids,\n",