Skip to content

Commit

Permalink
chore(deps-dev): update setuptools requirement from ~=54.1.2 to ~=56.…
Browse files Browse the repository at this point in the history
…0.0 in /packages/jsii-pacmak/lib/targets/python (#2781)
  • Loading branch information
dependabot[bot] authored Apr 9, 2021
1 parent 1963c3a commit c19b10e
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 11 deletions.
5 changes: 5 additions & 0 deletions jest.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import type { Config } from '@jest/types';
import { defaults } from 'jest-config';
import { cpus } from 'os';
import { env } from 'process';

/**
Expand Down Expand Up @@ -28,6 +29,10 @@ const config: Config.InitialOptions = {
testEnvironment: 'node',
testMatch: ['**/?(*.)+(spec|test).ts'],
testRunner: 'jest-circus/runner',
// Adjust maximum concurrency to specifically disallow running unbounded. Allow a minimum of 2 concurrent
// tests, and a maximum of 4 (which is the libuv thread pool size - more will likely cause wait times to
// quickly run out of control, and make everything very, very slow.)
maxConcurrency: Math.max(Math.min(cpus().length - 1, 4), 2),
// When in Continuous Integration, allow double the default test timeout (assuming "frugal" runner type)
testTimeout: env.CI === 'true' ? 10_000 : undefined,
transform: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# be installed in the virtual environment used for building the distribution
# package (wheel, sdist), but not declared as build-system dependencies.

setuptools~=54.1.2 # build-system
setuptools~=56.0.0 # build-system
wheel~=0.36.2 # build-system

twine~=3.4.1

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c19b10e

Please sign in to comment.