File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed
Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 4141 - name : Pytest unit tests
4242 working-directory : tests/durabletask
4343 run : |
44- PYTHONPATH=$GITHUB_WORKSPACE pytest -m "not e2e and not dts" --verbose
44+ pytest -m "not e2e and not dts" --verbose
4545
4646 # Sidecar for running e2e tests requires Go SDK
4747 - name : Install Go SDK
5555 run : |
5656 go install github.com/microsoft/durabletask-go@main
5757 durabletask-go --port 4001 &
58- PYTHONPATH=$GITHUB_WORKSPACE pytest -m "e2e and not dts" --verbose
58+ pytest -m "e2e and not dts" --verbose
Original file line number Diff line number Diff line change 5454 echo "TASKHUB=default" >> $GITHUB_ENV
5555 echo "ENDPOINT=http://localhost:8080" >> $GITHUB_ENV
5656
57- - name : Install dependencies
57+ - name : Install durabletask dependencies
58+ run : |
59+ python -m pip install --upgrade pip
60+ pip install flake8 pytest
61+ pip install -r requirements.txt
62+
63+ - name : Install durabletask-azuremanaged dependencies
5864 working-directory : examples/dts
5965 run : |
6066 python -m pip install --upgrade pip
6369 - name : Run the tests
6470 working-directory : tests/durabletask-azuremanaged
6571 run : |
66- PYTHONPATH=$GITHUB_WORKSPACE pytest -m "dts" --verbose
72+ pytest -m "dts" --verbose
6773
6874 publish :
6975 needs : run-docker-tests
You can’t perform that action at this time.
0 commit comments