Skip to content

Commit

Permalink
ci(basex): do not hide stderr of BaseX server
Browse files Browse the repository at this point in the history
On failrue, we'll need to look into stedrr.
  • Loading branch information
AirQuick committed May 3, 2023
1 parent f29a986 commit 81b17a6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions test/ci/print-env.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ java -cp "%BASEX_JAR%" org.basex.BaseX -h

echo:
echo === Check BaseX server start and stop
call "%BASEX_JAR%\..\bin\basexhttp.bat" -S 2> NUL
call "%BASEX_JAR%\..\bin\basexhttpstop.bat" 2> NUL
call "%BASEX_JAR%\..\bin\basexhttp.bat" -S
call "%BASEX_JAR%\..\bin\basexhttpstop.bat"

echo:
echo === Print environment variables
Expand Down
4 changes: 2 additions & 2 deletions test/ci/print-env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ java -cp "${BASEX_JAR}" org.basex.BaseX -h
echo
echo "=== Check BaseX server start and stop"
basex_home=$(dirname -- "${BASEX_JAR}")
"${basex_home}/bin/basexhttp" -S 2> /dev/null
"${basex_home}/bin/basexhttpstop" 2> /dev/null
"${basex_home}/bin/basexhttp" -S
"${basex_home}/bin/basexhttpstop"

echo
echo "=== Print Bats version"
Expand Down

0 comments on commit 81b17a6

Please sign in to comment.