Skip to content

Commit adb309f

Browse files
committed
fix
1 parent 59b2ebc commit adb309f

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

eng/templates/jobs/ci-dependency-check.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,20 @@ jobs:
4848
- bash: |
4949
echo "Checking azure_functions_worker (Python < 3.13)..."
5050
cd workers
51-
pip install .
51+
pip install . invoke
52+
cd tests
53+
python -m invoke -c test_setup build-protos
54+
cd ..
5255
python -c "import pkgutil, importlib; [importlib.import_module(f'azure_functions_worker.{name}') for _, name, _ in pkgutil.walk_packages(['azure_functions_worker'])]"
5356
displayName: 'Python Azure Functions Worker: check for missing dependencies'
5457
condition: eq(variables['proxyWorker'], false)
5558
- bash: |
5659
echo "Checking proxy_worker (Python >= 3.13)..."
5760
cd workers
58-
pip install .
61+
pip install . invoke
62+
cd tests
63+
python -m invoke -c test_setup build-protos
64+
cd ..
5965
python -c "import pkgutil, importlib; [importlib.import_module(f'proxy_worker.{name}') for _, name, _ in pkgutil.walk_packages(['proxy_worker'])]"
6066
displayName: 'Python Proxy Worker: check for missing dependencies'
6167
condition: eq(variables['proxyWorker'], true)

0 commit comments

Comments
 (0)