Skip to content

ci: Temp skip of cache-related tests #796

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 30, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions test.js
Original file line number Diff line number Diff line change
Expand Up @@ -1373,7 +1373,7 @@ test(
{ skip: !canUseDocker() || process.platform === 'win32' }
);

test('py3.7 uses download cache by default option', async (t) => {
test.skip('py3.7 uses download cache by default option', async (t) => {
process.chdir('tests/base');
const path = npm(['pack', '../..']);
npm(['i', path]);
Expand All @@ -1386,7 +1386,7 @@ test('py3.7 uses download cache by default option', async (t) => {
t.end();
});

test('py3.7 uses download cache by default', async (t) => {
test.skip('py3.7 uses download cache by default', async (t) => {
process.chdir('tests/base');
const path = npm(['pack', '../..']);
npm(['i', path]);
Expand Down Expand Up @@ -1415,7 +1415,7 @@ test(
{ skip: !canUseDocker() || brokenOn('win32') }
);

test(
test.skip(
'py3.7 uses download cache with dockerizePip by default option',
async (t) => {
process.chdir('tests/base');
Expand All @@ -1433,7 +1433,7 @@ test(
{ skip: !canUseDocker() || brokenOn('win32') }
);

test('py3.7 uses static and download cache', async (t) => {
test.skip('py3.7 uses static and download cache', async (t) => {
process.chdir('tests/base');
const path = npm(['pack', '../..']);
npm(['i', path]);
Expand Down