update ci behavior

This commit is contained in:
jacob 2023-04-04 11:03:06 -05:00
parent 087f074d7a
commit 81edab94b6
2 changed files with 8 additions and 8 deletions

View file

@ -203,7 +203,7 @@ build fbsql arm64:
variables:
BUILD_NAME: build_${CI_COMMIT_SHA}_${CI_CONCURRENT_ID}
tags:
- shell-arm64
- shell
rules:
- if: '$CI_PIPELINE_SOURCE == "push" || $CI_PIPELINE_SOURCE == "schedule" || $CI_PIPELINE_SOURCE == "web"'
script:

View file

@ -55,10 +55,10 @@ func getKafkaRunnerTestServices() *KafkaRunnerTestServices {
// data to kafka, configure the runner, and test that the runner successfully
// ran.
type kafkaRunnerTest struct {
ConfigFile string // path to the configuration file used for the runner
DataFile string // path to the data file to populate kafka with
CreateTableStmt string // statement used to create table prior to ingest
SchemaFile string
ConfigFile string // path to the configuration file used for the runner
DataFile string // path to the data file to populate kafka with
CreateTableStmt string // statement used to create table prior to ingest
SchemaFile string // path to schema file for schema encoded messages (e.g. avro)
Tests []testQuery // list of test which are 2-tuples of query and expected results
}
@ -175,9 +175,9 @@ var kafkaRunnerTests = []kafkaRunnerTest{
// 5. Runs the cli.Command
// 6. Confirms that the data was written to FeatureBase as expected
func TestKafkaRunner(t *testing.T) {
//if testing.Short() {
// t.Skip("skipping integration test")
//}
if testing.Short() {
t.Skip("skipping integration test")
}
// Get host and port pair for services required for test (e.g. kafka and
// featurebase)