From afb469851636c1c538ef4e95805531f76f5dcfb3 Mon Sep 17 00:00:00 2001 From: Anthony Mahanna Date: Thu, 9 Nov 2023 17:29:36 -0500 Subject: [PATCH] Update build.yaml --- .github/workflows/build.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index e97fc61a..13adf282 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -62,7 +62,7 @@ jobs: strategy: matrix: python_version: ["3.10"] # ["3.8", "3.9", "3.10", "3.11", "3.12"] - arangodb_config: ["single"] # ["single", "cluster"] + arangodb_config: ["single", "cluster"] arangodb_edition: ["community"] # ["community", "enterprise"] arangodb_version: ["latest"] # ["3.10.10", "3.11.4", "latest"] @@ -86,14 +86,14 @@ jobs: # - name: Sleep # run: sleep 15 - - name: List Docker Containers - run: docker ps -a + # - name: List Docker Containers + # run: docker ps -a - - name: Show Docker Logs - run: docker logs arango + # - name: Show Docker Logs + # run: docker logs arango - - name: Curl Request - run: curl -v http://localhost:8529/ + # - name: Curl Request + # run: curl -v http://localhost:8529/ - name: Pytest run: | @@ -108,4 +108,4 @@ jobs: fi echo "Running pytest with args: ${args[@]}" - pytest --cov=arango --cov-report=xml "${args[@]}" \ No newline at end of file + pytest -k "test_client_good_connection" --cov=arango --cov-report=xml "${args[@]}" \ No newline at end of file