Skip to content

Commit 9a149a7

Browse files
committed
Fix CI
1 parent 904bc33 commit 9a149a7

File tree

3 files changed

+1
-7
lines changed

3 files changed

+1
-7
lines changed

.github/scripts/windows/test_task.bat

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,7 @@ if %errorlevel% neq 0 exit /b 3
3838
rem setup PostgreSQL related exts
3939
set PGUSER=postgres
4040
set PGPASSWORD=Password12!
41-
rem set PGSQL_TEST_CONNSTR=host=127.0.0.1 dbname=test port=5432 user=postgres password=Password12!
42-
echo ^<?php $conn_str = "host=127.0.0.1 dbname=test port=5432 user=%PGUSER% password=%PGPASSWORD%"; ?^> >> "./ext/pgsql/tests/config.inc"
41+
set PGSQL_TEST_CONNSTR=host=127.0.0.1 dbname=test port=5432 user=%PGUSER% password=%PGPASSWORD%
4342
set PDO_PGSQL_TEST_DSN=pgsql:host=127.0.0.1 port=5432 dbname=test user=%PGUSER% password=%PGPASSWORD%
4443
set TMP_POSTGRESQL_BIN=%PGBIN%
4544
"%TMP_POSTGRESQL_BIN%\createdb.exe" test

ext/pgsql/tests/lcmess.inc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,3 @@ function _set_lc_messages($conn, $lc_messages = 'C')
1717

1818
return true;
1919
}
20-
21-
?>

ext/pgsql/tests/skipif.inc

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
<?php
32
// This script prints "skip" unless:
43
// * the pgsql extension is built-in or loadable, AND
@@ -47,5 +46,3 @@ function skip_bytea_not_escape()
4746
die("skip libpq or backend >= 9.0\n");
4847
}
4948
}
50-
51-
?>

0 commit comments

Comments
 (0)