Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
c768acf
Update prow config and test script so it works for Feast 0.3
davidheryanto Oct 24, 2019
4e747ef
Update CI test script for golang to use correct path
davidheryanto Oct 24, 2019
eac9d8f
Set pipefail option so test exit code is correct
davidheryanto Oct 24, 2019
f05be18
Update group id and version grpc-spring-boot-starter dependency
davidheryanto Oct 24, 2019
5bece03
Add JVM heap settings for Maven surefire
davidheryanto Oct 24, 2019
cf71297
Fix potential setup/teardown error when running ImportJobTest
davidheryanto Oct 24, 2019
ce6d554
Update remote URI to download cached Maven packages
davidheryanto Oct 24, 2019
ca70a9d
Fix path to logs artifacts
davidheryanto Oct 24, 2019
7341925
Merge branch '0.3-dev' into feast-prow-update
davidheryanto Oct 24, 2019
d79dfc0
Update maven enforcer rule for Maven and JDK versions
davidheryanto Oct 24, 2019
df5a47d
Use batch mode when initializing Maven for cleaner build log
davidheryanto Oct 24, 2019
dabd984
Skip maven enforcer when running test for specific project
davidheryanto Oct 24, 2019
66d2f6f
Fix incorrect order for java-sdk test script
davidheryanto Oct 24, 2019
42c8c5f
Install database and kafka dependencies for Feast end to end test
davidheryanto Oct 25, 2019
5bb25b3
Update Python SDK to not set source in FeatureSet when using default …
davidheryanto Oct 26, 2019
e33ae28
Merge branch '0.3-dev' into feast-prow-update
davidheryanto Oct 26, 2019
48a7139
Fix Python SDK type mapping
davidheryanto Oct 27, 2019
1756e68
Refactor prow scripts such that every test is defined in a separate s…
davidheryanto Oct 27, 2019
546b215
Remove reference to actual project id
davidheryanto Oct 27, 2019
85f3282
Log current stage in end to end test script
davidheryanto Oct 27, 2019
679ff12
Fix missing option to specify miniconda download target
davidheryanto Oct 27, 2019
5806366
Fix incorrect path to installing Python SDK
davidheryanto Oct 27, 2019
a958eda
Add small wait after ingestion, before validating the saved features,…
davidheryanto Oct 27, 2019
23bb84f
Increase wait time before checking, after applying feature set
davidheryanto Oct 27, 2019
675c32a
Make log cleaner
davidheryanto Oct 27, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Set pipefail option so test exit code is correct
For those commands that pipe the test output
  • Loading branch information
davidheryanto committed Oct 24, 2019
commit eac9d8f415e0226d9a2036fb9fc084cdae2d564d
2 changes: 2 additions & 0 deletions .prow/scripts/run_test.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/usr/bin/env bash

set -o pipefail

# Default artifact location setting in Prow jobs
LOGS_ARTIFACT_PATH=/logs/artifacts

Expand Down