Skip to content

Commit

Permalink
ci: test perf
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonnalley committed Oct 19, 2023
1 parent abc3fe0 commit 29e64ff
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest]
test: ['test:integration:install', 'test:integration:link']
exclude:
- os: windows-latest
test: test:integration:link
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion test/integration/install.integration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ describe('install/uninstall integration tests', () => {
before(async () => {
try {
// no need to clear out directories in CI since they'll always be empty
if (process.env.CI) {
if (!process.env.CI) {
await Promise.all([
rm(cacheDir, {force: true, recursive: true}),
rm(configDir, {force: true, recursive: true}),
Expand Down
2 changes: 1 addition & 1 deletion test/integration/link.integration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ async function exec(cmd: string, opts?: {cwd?: string}) {
})
}

;(process.platform === 'win32' ? describe.skip : describe)('link/unlink integration tests', () => {
describe('link/unlink integration tests', () => {
let sandbox: SinonSandbox
let stubs: ReturnType<typeof ux.makeStubs>

Expand Down

0 comments on commit 29e64ff

Please sign in to comment.