Skip to content

Commit

Permalink
Add Python 3.11 to Jenkins tests (#1543)
Browse files Browse the repository at this point in the history
  • Loading branch information
stsci-hack authored Apr 26, 2023
1 parent 3325db8 commit d6d72f5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion JenkinsfileRT
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,12 @@ bc3.test_cmds = ["pytest --cov=./ --basetemp=tests_output --bigdata",
"codecov"]
bc3.test_configs = [data_config]

bc4 = utils.copy(bc3)
bc4.name = '3.11-dev'
bc4.conda_packages = ['python=3.11']


// Iterate over configurations that define the (distributed) build matrix.
// Spawn a host (or workdir) for each combination and run in parallel.
// Also apply the job configuration defined in `jobconfig` above.
utils.run([bc1, bc3, jobconfig])
utils.run([bc1, bc3, bc4, jobconfig])

0 comments on commit d6d72f5

Please sign in to comment.