ci: Remove CircleCI workaround for buggy CPU count allocation.

GitHub Actions gives us 2 cpus (probably shared) to run the
jobs. Specifying 6 processes here doesn't make a difference
since both jobs run in around 5 minutes right now.
This commit is contained in:
Aman Agrawal 2021-03-16 16:59:46 +00:00 committed by Tim Abbott
parent f2a137f863
commit e0ed9cc605
1 changed files with 1 additions and 5 deletions

View File

@ -132,11 +132,7 @@ jobs:
run: | run: |
source tools/ci/activate-venv source tools/ci/activate-venv
exec 2>&1 exec 2>&1
# We need to pass a parallel level to test-backend because GitHub Actions' ./tools/test-backend --coverage --include-webhooks --no-cov-cleanup --ban-console-output
# docker setup means the auto-detection logic sees the ~36 processes
# the Docker host has, not the ~2 processes of resources we're
# allocated.
./tools/test-backend --coverage --include-webhooks --no-cov-cleanup --ban-console-output --parallel=6
- name: Run mypy - name: Run mypy
run: | run: |