Skip to content

Commit 24a6dfc

Browse files
committed
Run the one test to debug
1 parent e35b1c7 commit 24a6dfc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
test_integration:
4848
strategy:
4949
matrix:
50-
python-version: [ "3.9","3.10","3.11", "3.12" ]
50+
python-version: [ "3.12" ]
5151
runs-on: ubuntu-latest
5252
steps:
5353
- uses: actions/checkout@v4

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ test-integration-docker:
4545
-docker stop unstructured-api && docker kill unstructured-api
4646
docker run --name unstructured-api -p 8000:8000 -d --rm ${DOCKER_IMAGE} --host 0.0.0.0 && \
4747
curl -s -o /dev/null --retry 10 --retry-delay 5 --retry-all-errors http://localhost:8000/general/docs && \
48-
PYTHONPATH=. poetry run pytest -n auto _test_unstructured_client -v -k "integration" && \
48+
PYTHONASYNCIODEBUG=1 PYTHONPATH=. poetry run pytest -n auto _test_unstructured_client/integration/test_integration.py && \
4949
docker kill unstructured-api
5050

5151
.PHONY: lint

0 commit comments

Comments
 (0)