Skip to content

Commit

Permalink
Use secrets
Browse files Browse the repository at this point in the history
Signed-off-by: Julius Härtl <[email protected]>
  • Loading branch information
juliusknorr committed Mar 3, 2018
1 parent e13403c commit 1fb213b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -652,6 +652,7 @@ pipeline:
bucket: nextcloud-ui-regression
source: tests/ui-regression/out/**/*
target: /prs/
secrets: [ access_key, secret_key ]
when:
matrix:
TESTS: acceptance-ui
Expand Down
2 changes: 1 addition & 1 deletion tests/ui-regression/test/installSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const config = require('../config.js');
describe('installation', function () {

before(async () => await helper.init(this));
after(() => helper.exit());
after(async () => await helper.exit());

config.resolutions.forEach(function (resolution) {
it('show-page.' + resolution.title, async function () {
Expand Down
2 changes: 1 addition & 1 deletion tests/ui-regression/test/publicSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const config = require('../config.js');
describe('public', function () {

before(async () => await helper.init(this));
after(() => helper.exit());
after(async () => await helper.exit());

/**
* Test invalid file share rendering
Expand Down

0 comments on commit 1fb213b

Please sign in to comment.