Skip to content

Commit b5d8a53

Browse files
author
Tsotne Tabidze
committed
Fix integration tests feast-dev#3
Signed-off-by: Tsotne Tabidze <[email protected]>
1 parent ee6e0a5 commit b5d8a53

2 files changed

Lines changed: 10 additions & 2 deletions

File tree

.github/workflows/integration_tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,10 @@ jobs:
118118
fail_ci_if_error: true
119119
verbose: true
120120
- name: Benchmark python
121-
run: FEAST_USAGE=False IS_TEST=True pytest --verbose --color=yes sdk/python/tests --integration --benchmark --benchmark-autosave --benchmark-save-data --durations=5
121+
env:
122+
FEAST_SERVER_DOCKER_IMAGE_TAG: ${{ needs.build-docker-image.outputs.DOCKER_IMAGE_TAG }}
123+
FEAST_USAGE: "False"
124+
IS_TEST: "True"
125+
run: pytest --verbose --color=yes sdk/python/tests --integration --benchmark --benchmark-autosave --benchmark-save-data --durations=5
122126
- name: Upload Benchmark Artifact to S3
123127
run: aws s3 cp --recursive .benchmarks s3://feast-ci-pytest-benchmarks

.github/workflows/pr_integration_tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,10 @@ jobs:
138138
fail_ci_if_error: true
139139
verbose: true
140140
- name: Benchmark python
141-
run: FEAST_USAGE=False IS_TEST=True pytest --verbose --color=yes sdk/python/tests --integration --benchmark --benchmark-autosave --benchmark-save-data --durations=5
141+
env:
142+
FEAST_SERVER_DOCKER_IMAGE_TAG: ${{ needs.build-docker-image.outputs.DOCKER_IMAGE_TAG }}
143+
FEAST_USAGE: "False"
144+
IS_TEST: "True"
145+
run: pytest --verbose --color=yes sdk/python/tests --integration --benchmark --benchmark-autosave --benchmark-save-data --durations=5
142146
- name: Upload Benchmark Artifact to S3
143147
run: aws s3 cp --recursive .benchmarks s3://feast-ci-pytest-benchmarks

0 commit comments

Comments
 (0)