Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
maxjakob committed Mar 28, 2024
1 parent 70a7dc5 commit a5ab698
Showing 1 changed file with 2 additions and 14 deletions.
16 changes: 2 additions & 14 deletions .github/workflows/_integration_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ on:

env:
POETRY_VERSION: "1.7.1"
DOCKER_COMPOSE_YAML: "tests/integration_tests/docker-compose.yml"

jobs:
build:
Expand All @@ -37,7 +36,7 @@ jobs:
ports:
- 9200:9200
options: >-
--health-cmd "curl --silent --fail http://localhost:9200/_cluster/health || exit 1"
--health-cmd "curl --fail http://localhost:9200/_cluster/health"
--health-start-period 10s
--health-timeout 3s
--health-interval 3s
Expand All @@ -51,23 +50,12 @@ jobs:
python-version: ${{ matrix.python-version }}
poetry-version: ${{ env.POETRY_VERSION }}
working-directory: ${{ inputs.working-directory }}
cache-key: integration-test
cache-key: integration-tests

- name: Install dependencies
shell: bash
run: poetry install --with=test_integration,test

# - name: Start containers
# shell: bash
# # run: docker-compose -f "$DOCKER_COMPOSE_YAML" up -d --build elasticsearch
# run: |
# docker run --name es -d -p 9200:9200 \

- name: Run integration tests
shell: bash
run: make integration_test

# - name: Stop containers
# if: always()
# shell: bash
# run: docker stop es

0 comments on commit a5ab698

Please sign in to comment.