Skip to content

Commit

Permalink
fix: Fix autogluon tests for codebuild
Browse files Browse the repository at this point in the history
  • Loading branch information
claytonparnell committed Feb 17, 2024
1 parent 0ea7f62 commit 5c25bb0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
'additional_packages_env_in_file': 'gpu.additional_packages_env.in',
'image_tag_generator': '{image_version}-gpu',
'env_out_filename': 'gpu.env.out',
'pytest_flags': ['--use-gpu'],
'pytest_flags': ['--use-gpu', '--shm-size', '256m'],
'image_type': 'gpu'
},
{
Expand Down
2 changes: 1 addition & 1 deletion test/test_artifacts/v1/scripts/run_autogluon_tests.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

AUTOGLUON_VERSION=$(micromamba list | grep autogluon | tr -s ' ' | cut -d ' ' -f 3)
AUTOGLUON_VERSION=$(micromamba list | grep autogluon | tr -s ' ' | cut -d ' ' -f 3 | head -n 1)
git checkout tags/v$AUTOGLUON_VERSION

# Run autogluon quick start as end-to-end check
Expand Down

0 comments on commit 5c25bb0

Please sign in to comment.