-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* WIP: Shard python precommit * Naming * Formatting * Allow empty test suites * Fix no posargs case * Fix paths * Split out integration tests * Do common tasks in IT suite * Fix name base * More splitting * Fix quotes * try ignore-glob * Add groovy files per subfolder * name typo * Filter dataframes tests * Logging * Switch to correct directory syntax * Merge master + fix paths * Consolidate back to reasonable set * Add jobs to README * Try full quotes * Add in missing tests * Move arg lines down
- Loading branch information
Showing
13 changed files
with
265 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
import PrecommitJobBuilder | ||
|
||
PrecommitJobBuilder builder = new PrecommitJobBuilder( | ||
scope: this, | ||
nameBase: 'Python_Integration', | ||
gradleTask: ':pythonPreCommitIT', | ||
timeoutMins: 180, | ||
triggerPathPatterns: [ | ||
'^model/.*$', | ||
'^sdks/python/.*$', | ||
'^release/.*$', | ||
] | ||
) | ||
builder.build { | ||
// Publish all test results to Jenkins. | ||
publishers { | ||
archiveJunit('**/pytest*.xml') | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
import PrecommitJobBuilder | ||
|
||
PrecommitJobBuilder builder = new PrecommitJobBuilder( | ||
scope: this, | ||
nameBase: 'Python_Dataframe', | ||
gradleTask: ':pythonPreCommit', | ||
gradleSwitches: [ | ||
'-Pposargs=apache_beam/dataframe/' | ||
], | ||
timeoutMins: 180, | ||
triggerPathPatterns: [ | ||
'^model/.*$', | ||
'^sdks/python/.*$', | ||
'^release/.*$', | ||
] | ||
) | ||
builder.build { | ||
// Publish all test results to Jenkins. | ||
publishers { | ||
archiveJunit('**/pytest*.xml') | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
import PrecommitJobBuilder | ||
|
||
PrecommitJobBuilder builder = new PrecommitJobBuilder( | ||
scope: this, | ||
nameBase: 'Python_Examples', | ||
gradleTask: ':pythonPreCommit', | ||
gradleSwitches: [ | ||
'-Pposargs=apache_beam/examples/' | ||
], | ||
timeoutMins: 180, | ||
triggerPathPatterns: [ | ||
'^model/.*$', | ||
'^sdks/python/.*$', | ||
'^release/.*$', | ||
] | ||
) | ||
builder.build { | ||
// Publish all test results to Jenkins. | ||
publishers { | ||
archiveJunit('**/pytest*.xml') | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
import PrecommitJobBuilder | ||
|
||
PrecommitJobBuilder builder = new PrecommitJobBuilder( | ||
scope: this, | ||
nameBase: 'Python_Runners', | ||
gradleTask: ':pythonPreCommit', | ||
gradleSwitches: [ | ||
'-Pposargs=apache_beam/runners/' | ||
], | ||
timeoutMins: 180, | ||
triggerPathPatterns: [ | ||
'^model/.*$', | ||
'^sdks/python/.*$', | ||
'^release/.*$', | ||
] | ||
) | ||
builder.build { | ||
// Publish all test results to Jenkins. | ||
publishers { | ||
archiveJunit('**/pytest*.xml') | ||
} | ||
} |
40 changes: 40 additions & 0 deletions
40
.test-infra/jenkins/job_PreCommit_Python_Transforms.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
import PrecommitJobBuilder | ||
|
||
PrecommitJobBuilder builder = new PrecommitJobBuilder( | ||
scope: this, | ||
nameBase: 'Python_Transforms', | ||
gradleTask: ':pythonPreCommit', | ||
gradleSwitches: [ | ||
'-Pposargs=apache_beam/transforms/' | ||
], | ||
timeoutMins: 180, | ||
triggerPathPatterns: [ | ||
'^model/.*$', | ||
'^sdks/python/.*$', | ||
'^release/.*$', | ||
] | ||
) | ||
builder.build { | ||
// Publish all test results to Jenkins. | ||
publishers { | ||
archiveJunit('**/pytest*.xml') | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.