Skip to content

Commit a7fc523

Browse files
committed
setting CI_REPORTS with testpace client call
1 parent f76b3f1 commit a7fc523

File tree

4 files changed

+5
-8
lines changed

4 files changed

+5
-8
lines changed

.c9build.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,4 @@ gulp build
1111

1212
# Publish
1313
curl -s https://testspace-client.s3.amazonaws.com/testspace-linux.tgz | sudo tar -zxvf- -C /usr/local/bin
14-
export CI_REPORTS=$PWD/test/reports
15-
testspace publish @.testspace master.c9
14+
CI_REPORTS=$PWD/test/reports testspace publish @.testspace master.c9

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ before_script:
99
script:
1010
- gulp build
1111

12-
- export CI_REPORTS=$PWD/test/reports
12+
after_script:
1313
- curl -s https://testspace-client.s3.amazonaws.com/testspace-linux.tgz | sudo tar -zxvf- -C /usr/local/bin
14-
- testspace publish @.testspace $TESTSPACE_TOKEN/${TRAVIS_BRANCH}#travis.Build.${TRAVIS_BUILD_NUMBER}
14+
- CI_REPORTS=$PWD/test/reports testspace publish @.testspace $TESTSPACE_TOKEN/${TRAVIS_BRANCH}#travis.Build.${TRAVIS_BUILD_NUMBER}
1515

readme.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,7 @@ Publishing results example:
3535

3636
<pre>
3737
curl -s https://testspace-client.s3.amazonaws.com/testspace-linux.tgz | sudo tar -zxvf- -C /usr/local/bin
38-
export CI_REPORTS=$PWD/test/reports
39-
testspace publish @.testspace $TESTSPACE_TOKEN/$BRANCH_NAME
38+
CI_REPORTS=$PWD/test/reports testspace publish @.testspace $TESTSPACE_TOKEN/$BRANCH_NAME
4039
</pre>
4140

4241
Checkout the [Space](http://munderseth.stridespace.com/projects/javascript.jasmine/spaces/master).

shippable.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,4 @@ script:
1414

1515
after_script:
1616
- curl -s https://testspace-client.s3.amazonaws.com/testspace-linux.tgz | sudo tar -zxvf- -C /usr/local/bin
17-
- export CI_REPORTS=$PWD/test/reports
18-
- testspace publish @.testspace $TESTSPACE_TOKEN/${BRANCH}#ship.Build.${BUILD_NUMBER}
17+
- CI_REPORTS=$PWD/test/reports testspace publish @.testspace $TESTSPACE_TOKEN/${BRANCH}#ship.Build.${BUILD_NUMBER}

0 commit comments

Comments
 (0)