Skip to content

Commit 2c74922

Browse files
authored
fix: use unique logfile names (#1711)
Fixes: #1681
1 parent 16f7485 commit 2c74922

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.kokoro/build-with-appengine.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ set -e;
1919
export GCLOUD_PROJECT=nodejs-docs-samples-tests
2020

2121
# Activate mocha config
22-
export MOCHA_REPORTER_OUTPUT=sponge_log.xml
22+
export MOCHA_REPORTER_OUTPUT=${PROJECT}_sponge_log.xml
2323
export MOCHA_REPORTER=xunit
2424
pushd github/nodejs-docs-samples
2525
mv .kokoro/.mocharc.js .

.kokoro/build-with-run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
set -eo pipefail
1818

1919
# Activate mocha config
20-
export MOCHA_REPORTER_OUTPUT=sponge_log.xml
20+
export MOCHA_REPORTER_OUTPUT=${PROJECT}_sponge_log.xml
2121
export MOCHA_REPORTER=xunit
2222
pushd github/nodejs-docs-samples
2323
mv .kokoro/.mocharc.js .

.kokoro/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export BOT_ACCESS_TOKEN=${KOKORO_GFILE_DIR}/secrets-slack-bot-access-token.txt
7272
export CHANNEL=${KOKORO_GFILE_DIR}/secrets-slack-channel-id.txt
7373

7474
# Activate mocha config
75-
export MOCHA_REPORTER_OUTPUT=sponge_log.xml
75+
export MOCHA_REPORTER_OUTPUT=${PROJECT}_sponge_log.xml
7676
export MOCHA_REPORTER=xunit
7777
pushd github/nodejs-docs-samples
7878
mv .kokoro/.mocharc.js .

0 commit comments

Comments
 (0)