Skip to content

Commit 5afc467

Browse files
committed
Run postcommit.
1 parent 5b299bf commit 5afc467

File tree

3 files changed

+20
-20
lines changed

3 files changed

+20
-20
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"comment": "Modify this file in a trivial way to cause this test suite to run.",
33
"https://github.com/apache/beam/pull/32440": "test new datastream runner for batch"
4-
"modification": 8
4+
"modification": 9
55
}
66

build.gradle.kts

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -502,40 +502,40 @@ tasks.register("pythonFormatterPreCommit") {
502502
}
503503

504504
tasks.register("python39PostCommit") {
505-
dependsOn(":sdks:python:test-suites:dataflow:py39:postCommitIT")
506-
dependsOn(":sdks:python:test-suites:direct:py39:postCommitIT")
507-
dependsOn(":sdks:python:test-suites:direct:py39:hdfsIntegrationTest")
508-
dependsOn(":sdks:python:test-suites:direct:py39:azureIntegrationTest")
505+
// dependsOn(":sdks:python:test-suites:dataflow:py39:postCommitIT")
506+
// dependsOn(":sdks:python:test-suites:direct:py39:postCommitIT")
507+
// dependsOn(":sdks:python:test-suites:direct:py39:hdfsIntegrationTest")
508+
// dependsOn(":sdks:python:test-suites:direct:py39:azureIntegrationTest")
509509
dependsOn(":sdks:python:test-suites:portable:py39:postCommitPy39")
510510
// TODO (https://github.com/apache/beam/issues/23966)
511511
// Move this to Python 3.10 test suite once tfx-bsl has python 3.10 wheel.
512-
dependsOn(":sdks:python:test-suites:direct:py39:inferencePostCommitIT")
512+
// dependsOn(":sdks:python:test-suites:direct:py39:inferencePostCommitIT")
513513
}
514514

515515
tasks.register("python310PostCommit") {
516-
dependsOn(":sdks:python:test-suites:dataflow:py310:postCommitIT")
517-
dependsOn(":sdks:python:test-suites:direct:py310:postCommitIT")
516+
// dependsOn(":sdks:python:test-suites:dataflow:py310:postCommitIT")
517+
// dependsOn(":sdks:python:test-suites:direct:py310:postCommitIT")
518518
dependsOn(":sdks:python:test-suites:portable:py310:postCommitPy310")
519519
// TODO: https://github.com/apache/beam/issues/22651
520520
// The default container uses Python 3.10. The goal here is to
521521
// duild Docker images for TensorRT tests during run time for python versions
522522
// other than 3.10 and add these tests in other python postcommit suites.
523-
dependsOn(":sdks:python:test-suites:dataflow:py310:inferencePostCommitIT")
523+
// dependsOn(":sdks:python:test-suites:dataflow:py310:inferencePostCommitIT")
524524
}
525525

526526
tasks.register("python311PostCommit") {
527-
dependsOn(":sdks:python:test-suites:dataflow:py311:postCommitIT")
528-
dependsOn(":sdks:python:test-suites:direct:py311:postCommitIT")
529-
dependsOn(":sdks:python:test-suites:direct:py311:hdfsIntegrationTest")
527+
// dependsOn(":sdks:python:test-suites:dataflow:py311:postCommitIT")
528+
// dependsOn(":sdks:python:test-suites:direct:py311:postCommitIT")
529+
// dependsOn(":sdks:python:test-suites:direct:py311:hdfsIntegrationTest")
530530
dependsOn(":sdks:python:test-suites:portable:py311:postCommitPy311")
531531
}
532532

533533
tasks.register("python312PostCommit") {
534-
dependsOn(":sdks:python:test-suites:dataflow:py312:postCommitIT")
535-
dependsOn(":sdks:python:test-suites:direct:py312:postCommitIT")
536-
dependsOn(":sdks:python:test-suites:direct:py312:hdfsIntegrationTest")
534+
// dependsOn(":sdks:python:test-suites:dataflow:py312:postCommitIT")
535+
// dependsOn(":sdks:python:test-suites:direct:py312:postCommitIT")
536+
// dependsOn(":sdks:python:test-suites:direct:py312:hdfsIntegrationTest")
537537
dependsOn(":sdks:python:test-suites:portable:py312:postCommitPy312")
538-
dependsOn(":sdks:python:test-suites:dataflow:py312:inferencePostCommitITPy312")
538+
// dependsOn(":sdks:python:test-suites:dataflow:py312:inferencePostCommitITPy312")
539539
}
540540

541541
tasks.register("portablePythonPreCommit") {

sdks/python/test-suites/portable/common.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -384,11 +384,11 @@ project.tasks.register("postCommitPy${pythonVersionSuffix}IT") {
384384

385385
doLast {
386386
def tests = [
387-
"apache_beam/io/gcp/bigquery_read_it_test.py",
387+
// "apache_beam/io/gcp/bigquery_read_it_test.py",
388388
"apache_beam/io/external/xlang_jdbcio_it_test.py",
389-
"apache_beam/io/external/xlang_kafkaio_it_test.py",
390-
"apache_beam/io/external/xlang_kinesisio_it_test.py",
391-
"apache_beam/io/external/xlang_debeziumio_it_test.py",
389+
// "apache_beam/io/external/xlang_kafkaio_it_test.py",
390+
// "apache_beam/io/external/xlang_kinesisio_it_test.py",
391+
// "apache_beam/io/external/xlang_debeziumio_it_test.py",
392392
]
393393
def testOpts = ["${tests.join(' ')}"] + ["--log-cli-level=INFO"]
394394
def pipelineOpts = [

0 commit comments

Comments
 (0)