Skip to content

Commit f407f40

Browse files
committed
Fix release CI attempt 3
1 parent 47e1bad commit f407f40

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ lazy val tests = project
7171
scriptedLaunchOpts ++= {
7272
Seq(s"-Dplugin.scalapy.version=$scalapyVersion") ++
7373
getProps("plugin.python.executable", "plugin.virtualenv") ++
74-
Seq("-Xmx1024M", "-Dplugin.version=" + version.value)
74+
Seq("-Xmx1024M", "-Dplugin.version=" + (root / version).value)
7575
},
7676
scriptedBufferLog := false
7777
)

scripts/integration_test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/sh
22

33
sbt +publishLocal
4-
sbt -Dplugin.python.executable="$1" -Dplugin.scalapy.version="$2" scripted
4+
sbt -Dplugin.python.executable="$1" -Dplugin.scalapy.version="$2" tests/scripted

scripts/virtualenv_test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ sbt \
1313
-Dplugin.virtualenv=true \
1414
-Dplugin.python.executable="${VENV_DIR}/bin/python" \
1515
-Dplugin.scalapy.version="$1" \
16-
scripted
16+
tests/scripted
1717

1818
echo "Delete virtualenv ${VENV_DIR}"
1919
rm -r "${VENV_DIR}"

0 commit comments

Comments
 (0)