Skip to content

Commit 7ab1d9d

Browse files
committed
ci: more debugging. export JAVA_HOME to allow correct spark session config for test step
1 parent 760a88e commit 7ab1d9d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci_testing.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,12 @@ jobs:
5555
run: |
5656
echo "PWD - $PWD"
5757
cat ${PWD}/.tool-versions
58-
59-
- name: DEBUG - check JAVA_HOME
60-
run: echo "JAVA_HOME - $JAVA_HOME"
6158
6259
- name: Run pytest and behave tests
63-
run: make all-tests
60+
run: |
61+
export JAVA_HOME=$(asdf where java)
62+
echo "JAVA_HOME - $JAVA_HOME"
63+
make all-tests
6464
6565
# - name: Upload Coverage Report
6666
# uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)