Skip to content

Commit ce82fa6

Browse files
updated pipline
1 parent 57f6a27 commit ce82fa6

File tree

2 files changed

+21
-9
lines changed

2 files changed

+21
-9
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ on:
2424
- main
2525
- dev
2626
- demo
27+
- dependabotchanges
2728
paths:
2829
- 'src/**/*.py'
2930
- 'tests/**/*.py'
@@ -46,13 +47,10 @@ jobs:
4647
with:
4748
python-version: "3.12"
4849

49-
- name: Install uv
50-
uses: astral-sh/setup-uv@v4
51-
5250
- name: Install Backend Dependencies
5351
run: |
54-
cd src/ContentProcessor
55-
uv sync --frozen --dev
52+
python -m pip install --upgrade pip
53+
pip install -r src/ContentProcessor/requirements.txt
5654
5755
- name: Set PYTHONPATH
5856
run: echo "PYTHONPATH=$PWD" >> $GITHUB_ENV
@@ -72,7 +70,7 @@ jobs:
7270
if: env.skip_backend_tests == 'false'
7371
run: |
7472
cd src/ContentProcessor
75-
uv run pytest -vv --cov=. --cov-report=xml --cov-report=term-missing --cov-fail-under=80
73+
python -m pytest -vv --cov=. --cov-report=xml --cov-report=term-missing --cov-fail-under=80
7674
7775
- name: Skip Backend Tests
7876
if: env.skip_backend_tests == 'true'

src/ContentProcessor/requirements.txt

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# This file was autogenerated by uv via the following command:
2+
# uv export --frozen --no-hashes
13
annotated-types==0.7.0
24
azure-ai-inference==1.0.0b9
35
azure-appconfiguration==1.7.2
@@ -6,32 +8,44 @@ azure-identity==1.25.1
68
azure-storage-blob==12.28.0
79
azure-storage-queue==12.15.0
810
certifi==2026.1.4
9-
cffi==2.0.0
11+
cffi==2.0.0 ; platform_python_implementation != 'PyPy'
1012
charset-normalizer==3.4.4
1113
click==8.3.1
12-
colorama==0.4.6
14+
colorama==0.4.6 ; sys_platform == 'win32'
15+
coverage==7.13.1
1316
cryptography==46.0.3
1417
dnspython==2.8.0
1518
idna==3.11
19+
iniconfig==2.3.0
1620
isodate==0.7.2
21+
mongomock==4.3.0
1722
msal==1.34.0
1823
msal-extensions==1.3.1
1924
numpy==2.4.1
25+
packaging==25.0
2026
pandas==2.3.3
2127
pdf2image==1.17.0
2228
pillow==12.1.0
29+
pluggy==1.6.0
2330
poppler-utils==0.1.0
24-
pycparser==2.23
31+
pycparser==2.23 ; implementation_name != 'PyPy' and platform_python_implementation != 'PyPy'
2532
pydantic==2.12.5
2633
pydantic-core==2.41.5
2734
pydantic-settings==2.12.0
35+
pygments==2.19.2
2836
pyjwt==2.10.1
2937
pymongo==4.16.0
38+
pytest==9.0.2
39+
pytest-asyncio==1.3.0
40+
pytest-cov==7.0.0
41+
pytest-mock==3.15.1
3042
python-dateutil==2.9.0.post0
3143
python-dotenv==1.2.1
3244
pytz==2025.2
3345
regex==2025.11.3
3446
requests==2.32.5
47+
ruff==0.14.11
48+
sentinels==1.1.1
3549
six==1.17.0
3650
tiktoken==0.12.0
3751
typing-extensions==4.15.0

0 commit comments

Comments
 (0)