Skip to content

Commit 2771d51

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

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

Jenkinsfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,15 @@ pipeline {
6767
}
6868
stage('Python bwc-upgrade tests') {
6969
agent { label 'medium && x64' }
70-
tools { jdk 'jdk11' }
70+
tools { jdk 'jdk17' }
7171
steps {
7272
checkout scm
7373
sh '''
7474
rm -rf env
7575
/usr/bin/python3.11 -m venv env
7676
source env/bin/activate
77+
unset JAVA_TOOL_OPTIONS
78+
unset JAVA_OPTS
7779
python -m pip install -U -e .
7880
7981
(cd tests/bwc && python -m unittest -vvvf test_upgrade.py)

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)