Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit4d32676

Browse files
committed
Fix travis tests
1 parent3c24b5b commit4d32676

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

‎make_dockerfile.sh‎

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,16 @@ else
1616
echo MODE=${MODE}
1717
fi
1818

19-
if [!-z${TEST_CASE+x} ];then
19+
if [-z${TEST_CASE+x} ];then
20+
TEST_CASE=all
21+
else
2022
echo TEST_CASE=${TEST_CASE}
2123
fi
2224

23-
if [!-z${TEST_REPEATS+x} ];then
24-
echo TEST_REPEATS=${TEST_REPEATS}
25-
else
25+
if [-z${TEST_REPEATS+x} ];then
2626
TEST_REPEATS=1
27+
else
28+
echo TEST_REPEATS=${TEST_REPEATS}
2729
fi
2830

2931
echo PG_VERSION=${PG_VERSION}

‎run_tests.sh‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ if [ "$MODE" = "basic" ]; then
8181
export PG_PROBACKUP_TEST_BASIC=ON
8282
fi
8383

84-
if [-z${TEST_CASE+x} ];then
84+
if ["$TEST_CASE"="all" ];then
8585
python -m unittest -v tests.ptrack
8686
else
8787
foriin`seq$TEST_REPEATS`;do

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp