Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update coveralls config #4206

Merged
merged 16 commits into from
Jun 28, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
debug: test whether mkdir works for opt
  • Loading branch information
thrau committed Jun 28, 2021
commit 549c617f5428516e048ebe5b545ec6ad16070ce1
3 changes: 2 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
key: python-requirements-{{ checksum "requirements.txt" }}
- run:
command: |
mkdir -p /opt/code
sudo apt-get update
sudo apt-get install -y libsasl2-dev python3.8-venv python3.8-dev
name: Install prerequisites
Expand Down Expand Up @@ -128,7 +129,7 @@ jobs:
[[ "$cid" != "" ]] || { echo "could not create build container"; exit 1; }

docker cp ${cid}:/opt/code/localstack/target/test-report.xml target/reports || true
docker cp ${cid}:/opt/code/localstack/.coverage ./ || true
docker cp ${cid}:/opt/code/localstack/.coverage target/.coverage || true
when: always
- run:
name: Report coverage statistics
Expand Down