Skip to content

Commit

Permalink
Merge branch 'aws:develop' into developoct9
Browse files Browse the repository at this point in the history
  • Loading branch information
hanwen-pcluste authored Oct 11, 2024
2 parents d01824e + 89873ed commit 215bf14
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@ jobs:
python-version: '3.12'
- name: Install AWS CDK
run: |
pip install typeguard~=2.13
npm install -g aws-cdk
pip install -r cloudformation/external-slurmdbd/requirements.txt
- working-directory: cloudformation/external-slurmdbd
Expand Down
4 changes: 3 additions & 1 deletion tests/integration-tests/conftest_resource_bucket.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ def install_pc(basepath, pc_version):
cli_dir = root / "cli"
try:
logger.info("installing ParallelCluster packages...")
subprocess.check_call([sys.executable, "-m", "pip", "install", f"{cli_dir}[awslambda]", "-t", tempdir])
subprocess.check_call(
[sys.executable, "-m", "pip", "install", "jsonschema==4.17.3", f"{cli_dir}[awslambda]", "-t", tempdir]
)
# The following are provided by the lambda runtime
shutil.rmtree(tempdir / "botocore")
shutil.rmtree(tempdir / "boto3")
Expand Down

0 comments on commit 215bf14

Please sign in to comment.