Skip to content

Commit

Permalink
windows $%@#T%@#%
Browse files Browse the repository at this point in the history
  • Loading branch information
sobolk committed Jan 3, 2024
1 parent 2bbb0d0 commit 44c1f6f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion codebuild_specs/run_e2e_tests_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ version: 0.2
env:
shell: powershell.exe
variables:
CLI_REGION: us-east-1
TEST_SUITE: src/__tests__/auth_2a.test.ts|src/__tests__/auth_2b.test.ts|src/__tests__/auth_2d.test.ts|src/__tests__/auth_2f.test.ts
CI: true
CIRCLECI: true
Expand Down
3 changes: 2 additions & 1 deletion scripts/select-region-for-e2e-test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { AWS_REGIONS_TO_RUN_TESTS } from './cci-utils';
import * as fs from 'fs-extra';
import path from 'path';

/**
* This script prints region assignment for an e2e test job.
Expand All @@ -20,7 +21,7 @@ if (!selectedRegion) {
}
// Offset should be changed if we want re-shuffle regions.
const offset = 0;
const waitForIdsFilePath = './codebuild_specs/wait_for_ids.json';
const waitForIdsFilePath = path.join('.', 'codebuild_specs', 'wait_for_ids.json');
const jobIds = JSON.parse(fs.readFileSync(waitForIdsFilePath, 'utf-8')) as Array<string>;
let jobPosition = jobIds.indexOf(jobId);
if (jobPosition < 0) {
Expand Down

0 comments on commit 44c1f6f

Please sign in to comment.