Skip to content

Commit 2d0d9e7

Browse files
author
Tsotne Tabidze
committed
Fix integration tests
Signed-off-by: Tsotne Tabidze <tsotne@tecton.ai>
1 parent 27bf63c commit 2d0d9e7

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/integration_tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,9 @@ jobs:
104104
run: make install-python-ci-dependencies
105105
- name: Test python
106106
env:
107-
FEAST_SERVER_DOCKER_IMAGE_TAG: ${{needs.build-docker-image.outputs.DOCKER_IMAGE_TAG}}
108-
FEAST_USAGE: False
109-
IS_TEST: True
107+
FEAST_SERVER_DOCKER_IMAGE_TAG: ${{ needs.build-docker-image.outputs.DOCKER_IMAGE_TAG }}
108+
FEAST_USAGE: "False"
109+
IS_TEST: "True"
110110
run: pytest -n 8 --cov=./ --cov-report=xml --verbose --color=yes sdk/python/tests --integration --durations=5
111111
- name: Upload coverage to Codecov
112112
uses: codecov/codecov-action@v1

.github/workflows/pr_integration_tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,9 +124,9 @@ jobs:
124124
run: make install-python-ci-dependencies
125125
- name: Test python
126126
env:
127-
FEAST_SERVER_DOCKER_IMAGE_TAG: ${{needs.build-docker-image.outputs.DOCKER_IMAGE_TAG}}
128-
FEAST_USAGE: False
129-
IS_TEST: True
127+
FEAST_SERVER_DOCKER_IMAGE_TAG: ${{ needs.build-docker-image.outputs.DOCKER_IMAGE_TAG }}
128+
FEAST_USAGE: "False"
129+
IS_TEST: "True"
130130
run: pytest -n 8 --cov=./ --cov-report=xml --verbose --color=yes sdk/python/tests --integration --durations=5
131131
- name: Upload coverage to Codecov
132132
uses: codecov/codecov-action@v1

0 commit comments

Comments
 (0)