diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 8efd0f444..67df231fc 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -34,14 +34,8 @@ ADD --chown=vscode:vscode files/.bash_completion /home/vscode/.bash_completion RUN mkdir /home/vscode/.bash_completion.d/ # Setup AWS CLI -RUN pip3 install --user awscli +RUN pip3 install --user awscli poetry==1.5.1 RUN echo "complete -C '/home/vscode/.local/bin/aws_completer' aws" >> ~/.bashrc -# Setup Poetry -RUN bash -c "curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py | python - \ - && echo 'export PATH=$HOME/.local/bin:\$PATH' >> ~/.bashrc" -RUN bash -c "export PATH=$HOME/.local/bin:\$PATH \ - && poetry completions bash > ~/.bash_completion.d/poetry.bash-completion" - # Setup OS_NAME var for runway builds from this dev container RUN echo "export OS_NAME=ubuntu-20.04" >> ~/.bashrc diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 0e5d456dd..76f77e662 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -235,6 +235,8 @@ jobs: run: make test cov-xml - name: Upload to Codecov uses: codecov/codecov-action@v3.1.4 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: fail_ci_if_error: true build-pypi: