diff --git a/buildspec.yml b/buildspec.yml index 54caae4..2ed24ba 100644 --- a/buildspec.yml +++ b/buildspec.yml @@ -10,14 +10,13 @@ env: LS_LOG: trace parameter-store: LOCALSTACK_AUTH_TOKEN: /CodeBuild/LOCALSTACK_AUTH_TOKEN - git-credential-helper: yes phases: install: runtime-versions: python: 3.11 commands: - - test -d /root/.pyenv/versions/3.9.16/bin || pyenv install 3.9.16 + - pyenv install 3.9.16 - pyenv global 3.9.16 - pip install -r requirements-dev.txt - pip install localstack @@ -42,7 +41,15 @@ phases: - pytest tests finally: - localstack logs + - ls -la /root/.pyenv/versions/ + - ls -la /root/.pyenv/versions/3.9.16 + - ls -la /root/.pyenv/versions/3.9.16/bin + - ls -la /root/.pyenv/versions/3.9.16/include + - ls -la /root/.pyenv/versions/3.9.16/lib + - ls -la /root/.pyenv/versions/3.9.16/share cache: paths: - - /root/.pyenv/versions/3.9.16 + - /root/.pyenv/versions/3.9.16/ + - /root/.pyenv/versions/3.9.16/**/* +