Skip to content

Commit f627275

Browse files
committed
Try my local branch first
1 parent 3fe382b commit f627275

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

Jenkinsfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,11 @@ pipeline {
6767
}
6868
stage('Python bwc-upgrade tests') {
6969
agent { label 'medium && x64' }
70-
tools { jdk 'jdk11' }
70+
tools { jdk 'jdk17' }
71+
environment {
72+
JAVA_TOOL_OPTIONS = ''
73+
JAVA_OPTS = ''
74+
}
7175
steps {
7276
checkout scm
7377
sh '''

tests/bwc/test_upgrade.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -189,10 +189,9 @@ class MetaDataCompatibilityTest(NodeProvider, unittest.TestCase):
189189
}
190190

191191
SUPPORTED_VERSIONS = (
192+
VersionDef('2.3.x', []),
192193
VersionDef('3.3.x', []),
193-
VersionDef('5.10.x', []),
194-
VersionDef('6.0.x', []),
195-
VersionDef('6.1.x', []),
194+
VersionDef('branch:jeeminso/temp-10', []),
196195
)
197196

198197
def test_metadata_compatibility(self):

0 commit comments

Comments
 (0)