Skip to content

Commit

Permalink
Update r-session-complete tests for >=2024.7 preview compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
ianpittwood committed May 30, 2024
1 parent 892d78e commit 10d4acc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions r-session-complete/test/goss.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ file:
/usr/local/bin/jupyter:
exists: true
{{ $version_split := split "." .Env.RSW_VERSION }}
{{ if or (lt ($version_split._0 | atoi) 2022) (and (eq ($version_split._0 | atoi) 2022) (lt ($version_split._1 | atoi) 12)) }}
/opt/code-server/bin/code-server:
{{ if or (ge ($version_split._0 | atoi) 2025) (and (ge ($version_split._0 | atoi) 2024) (ge ($version_split._1 | atoi) 7)) }}
/usr/lib/rstudio-server/bin/pwb-code-server/bin/code-server:
exists: true
{{ else }}
/usr/lib/rstudio-server/bin/code-server/bin/code-server:
Expand Down

0 comments on commit 10d4acc

Please sign in to comment.