Skip to content

Commit 9de2d08

Browse files
committed
update rubocop output location
1 parent 6127675 commit 9de2d08

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ jobs:
3131
command: bundle exec scss-lint --no-color --format=Stats --format=Default --out=reports/scss-lint.txt app/assets/stylesheets/ || true
3232
- run:
3333
name: Run brakeman
34-
command: bundle exec brakeman -o tmp/brakeman.json
35-
- run: bundle exec brakeman_translate_checkstyle_format translate --file="tmp/brakeman.json" > reports/brakeman_checkstyle.xml
34+
command: bundle exec brakeman -o reports/brakeman.json
35+
- run: bundle exec brakeman_translate_checkstyle_format translate --file="reports/brakeman.json" > reports/brakeman_checkstyle.xml
3636
- run:
3737
name: Run specs
3838
command: CI_REPORTS=reports/test bundle exec rake minitest test

.testspace.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
reports/rubocop.txt{lint}
33
reports/brakeman_checkstyle.xml
44
reports/scss-lint.txt{lint}
5-
[Tests]reports/TEST*.xml{test}
5+
[Tests]reports/test/TEST*.xml{test}
66
coverage/coverage.xml

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ before_script:
1212
script:
1313
- bundle install
1414
- bundle exec rubocop --format emacs --out reports/rubocop.txt || true
15-
- bundle exec brakeman -o tmp/brakeman.json
16-
- bundle exec brakeman_translate_checkstyle_format translate --file="tmp/brakeman.json" > reports/brakeman_checkstyle.xml
15+
- bundle exec brakeman -o reports/brakeman.json
16+
- bundle exec brakeman_translate_checkstyle_format translate --file="reports/brakeman.json" > reports/brakeman_checkstyle.xml
1717
- bundle exec scss-lint --no-color --format=Stats --format=Default --out=reports/scss-lint.txt app/assets/stylesheets/ || true
1818
- CI_REPORTS=reports/test bundle exec rake minitest test
1919

shippable.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
- testspace config url samples.testspace.com
1111
- bundle install
1212
- bundle exec rubocop --format emacs --out reports/rubocop.txt || true
13-
- bundle exec brakeman -o tmp/brakeman.json
14-
- bundle exec brakeman_translate_checkstyle_format translate --file="tmp/brakeman.json" > reports/brakeman_checkstyle.xml
13+
- bundle exec brakeman -o reports/brakeman.json
14+
- bundle exec brakeman_translate_checkstyle_format translate --file="reports/brakeman.json" > reports/brakeman_checkstyle.xml
1515
- bundle exec scss-lint --no-color --format=Stats --format=Default --out=reports/scss-lint.txt app/assets/stylesheets/ || true
1616
- CI_REPORTS=reports/test bundle exec rake minitest test
1717

0 commit comments

Comments
 (0)