Skip to content

Commit

Permalink
Rename release script fixture test scheduler->tracing (#14590)
Browse files Browse the repository at this point in the history
  • Loading branch information
bvaughn authored Jan 15, 2019
1 parent 7ad9806 commit 0ca628b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions scripts/release/prepare-canary.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const getLatestMasterBuildNumber = require('./prepare-canary-commands/get-latest
const parseParams = require('./prepare-canary-commands/parse-params');
const printPrereleaseSummary = require('./shared-commands/print-prerelease-summary');
const testPackagingFixture = require('./shared-commands/test-packaging-fixture');
const testSchedulerFixture = require('./shared-commands/test-scheduler-fixture');
const testTracingFixture = require('./shared-commands/test-tracing-fixture');

const run = async () => {
try {
Expand All @@ -28,7 +28,7 @@ const run = async () => {

if (!params.skipTests) {
await testPackagingFixture(params);
await testSchedulerFixture(params);
await testTracingFixture(params);
}

await printPrereleaseSummary(params);
Expand Down
4 changes: 2 additions & 2 deletions scripts/release/prepare-stable.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const guessStableVersionNumbers = require('./prepare-stable-commands/guess-stabl
const parseParams = require('./prepare-stable-commands/parse-params');
const printPrereleaseSummary = require('./shared-commands/print-prerelease-summary');
const testPackagingFixture = require('./shared-commands/test-packaging-fixture');
const testSchedulerFixture = require('./shared-commands/test-scheduler-fixture');
const testTracingFixture = require('./shared-commands/test-tracing-fixture');
const updateStableVersionNumbers = require('./prepare-stable-commands/update-stable-version-numbers');

const run = async () => {
Expand All @@ -32,7 +32,7 @@ const run = async () => {

if (!params.skipTests) {
await testPackagingFixture(params);
await testSchedulerFixture(params);
await testTracingFixture(params);
}

await printPrereleaseSummary(params);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const validate = async ({cwd}) => {
const run = async ({cwd}) => {
const errorMessage = await logPromise(
validate({cwd}),
'Verifying "scheduler" fixture'
'Verifying "scheduler/tracing" fixture'
);
if (errorMessage) {
console.error(theme.error(errorMessage));
Expand Down

0 comments on commit 0ca628b

Please sign in to comment.