We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 100fb84 commit 4c39080Copy full SHA for 4c39080
test/DatatablesParser.Tests/test-runner.sh
@@ -3,10 +3,10 @@
3
echo "Restore and build while db servers are starting"
4
dotnet restore
5
dotnet build
6
-echo "Waiting for test db servers"
7
-while ! nc mssql 1433 && nc mysql 3306 ; do
+echo "Testing connections to test db servers"
+while ! nc -w 1 mssql 1433 && nc -w 1 mysql 3306 ; do
8
sleep 1;
9
- echo "noop"
+ echo "Test db serers not ready. Trying again"
10
done
11
echo "Test DB Servers started"
12
dotnet test
0 commit comments